From 20747f9d02897f87d7904e0a387631360fa1e4ed Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Tue, 22 Nov 2022 17:37:15 -0600 Subject: [PATCH] Put quotes in echo --- cockpit-sensors/lure.sh | 6 +++--- fzf/lure.sh | 8 ++++---- gocryptfs/lure.sh | 4 ++-- lf/lure.sh | 4 ++-- lsd/lure.sh | 4 ++-- sejda-console/lure.sh | 2 +- 6 files changed, 14 insertions(+), 14 deletions(-) diff --git a/cockpit-sensors/lure.sh b/cockpit-sensors/lure.sh index 797d048..31f3aea 100644 --- a/cockpit-sensors/lure.sh +++ b/cockpit-sensors/lure.sh @@ -20,15 +20,15 @@ version() { package() { # Pull sources - echo Pulling ${name} ${version} + echo "Pulling ${name} ${version}" curl -L "https://github.com/${git_repo}/releases/latest/download/${name}.tar.xz" -o ${name}.tar.xz # Build package - echo Creating the package + echo "Creating the package" tar -xf ${name}.tar.xz ${name}/dist # Binary mkdir -p "${pkgdir}/usr/share/cockpit" mv ${name}/dist "${pkgdir}/usr/share/cockpit/sensors" # Notice - echo Make sure to run sensors-detect + echo "Make sure to run sensors-detect" } \ No newline at end of file diff --git a/fzf/lure.sh b/fzf/lure.sh index 6f49718..a2933bf 100644 --- a/fzf/lure.sh +++ b/fzf/lure.sh @@ -19,7 +19,7 @@ version() { package() { # Pull sources - echo Pulling ${name} ${version} + echo "Pulling ${name} ${version}" curl -L "https://github.com/${git_repo}/releases/latest/download/fzf-${version}-linux_amd64.tar.gz" -o ${name}.tar.gz curl -L "https://raw.githubusercontent.com/${git_repo}/master/bin/${name}-tmux" -o ${name}-tmux curl -L "https://raw.githubusercontent.com/${git_repo}/master/man/man1/${name}.1" -o ${name}.1 @@ -30,7 +30,7 @@ package() { curl -L "https://raw.githubusercontent.com/${git_repo}/master/shell/key-bindings.zsh" -o key-bindings.bash curl -L "https://raw.githubusercontent.com/${git_repo}/master/shell/key-bindings.fish" -o key-bindings.fish # Build package - echo Creating the package + echo "Creating the package" tar -xzf "${name}.tar.gz" -C . # Binaries install -Dm755 "./${name}" "${pkgdir}/usr/local/bin/${name}" @@ -46,7 +46,7 @@ package() { command -v bash &> /dev/null && install -Dm644 key-bindings.bash "${pkgdir}/usr/share/${name}/key-bindings.bash" command -v zsh &> /dev/null && install -Dm644 key-bindings.zsh "${pkgdir}/usr/share/${name}/key-bindings.zsh" # Notice - echo For key-binding and completion to work with fish, some manual intervention is required - echo Look here for instructions: https://wiki.archlinux.org/title/fzf#fish + echo "For key-binding and completion to work with fish, some manual intervention is required" + echo "Look here for instructions: https://wiki.archlinux.org/title/fzf#fish" } \ No newline at end of file diff --git a/gocryptfs/lure.sh b/gocryptfs/lure.sh index ff9fed7..1b187bd 100644 --- a/gocryptfs/lure.sh +++ b/gocryptfs/lure.sh @@ -19,10 +19,10 @@ version() { package() { # Pull sources - echo Pulling ${name} ${version} + echo "Pulling ${name} ${version}" curl -L "https://github.com/${git_repo}/releases/latest/download/${name}_${version}_linux-static_${ARCH}.tar.gz" -o ${name}.tar.gz # Build package - echo Creating the package + echo "Creating the package" tar -xzf "${name}.tar.gz" -C . # Binaries install -Dm755 "./${name}" "${pkgdir}/usr/local/bin/${name}" diff --git a/lf/lure.sh b/lf/lure.sh index f127cf7..1aa40d9 100644 --- a/lf/lure.sh +++ b/lf/lure.sh @@ -19,14 +19,14 @@ version() { package() { # Pull sources - echo Pulling ${name} ${version} + echo "Pulling ${name} ${version}" curl -L "https://github.com/${git_repo}/releases/latest/download/${name}-linux-${ARCH}.tar.gz" -o ${name}.tar.gz curl -L "https://raw.githubusercontent.com/${git_repo}/master/${name}.1" -o ${name}.1 command -v fish &> /dev/null && curl -L "https://raw.githubusercontent.com/${git_repo}/master/etc/${name}.fish" -o ${name}.fish command -v zsh &> /dev/null && curl -L "https://raw.githubusercontent.com/${git_repo}/master/etc/${name}.zsh" -o ${name}.zsh command -v bash &> /dev/null && curl -L "https://raw.githubusercontent.com/${git_repo}/master/etc/${name}.bash" -o ${name}.bash # Build package - echo Creating the package + echo "Creating the package" tar -xzf "${name}.tar.gz" -C . # Binary install -Dm755 "./${name}" "${pkgdir}/usr/local/bin/${name}" diff --git a/lsd/lure.sh b/lsd/lure.sh index 96517ab..fbbcfb8 100644 --- a/lsd/lure.sh +++ b/lsd/lure.sh @@ -19,10 +19,10 @@ version() { package() { # Pull sources - echo Pulling ${name} ${version} + echo "Pulling ${name} ${version}" curl -L "https://github.com/${git_repo}/releases/latest/download/${name}-${version}-x86_64-unknown-linux-musl.tar.gz" -o ${name}.tar.gz # Build package - echo Creating the package + echo "Creating the package" tar -xzf "${name}.tar.gz" -C . cd "./${name}-${version}-x86_64-unknown-linux-musl" # Binary diff --git a/sejda-console/lure.sh b/sejda-console/lure.sh index efa0ffc..f698777 100644 --- a/sejda-console/lure.sh +++ b/sejda-console/lure.sh @@ -17,7 +17,7 @@ checksums=('a2380aff1904103317a92b61a2008e2018184de0a7ed58e2516bd1b3818a48bf') package() { # Build package - echo Creating the package + echo "Creating the package" unzip -qq ${name}-${version}-bin.zip # Binary mkdir -p ${pkgdir}/opt