summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngy döt Net <ingy@ingy.net>2019-04-05 12:37:49 -0700
committerIngy döt Net <ingy@ingy.net>2019-04-05 12:37:49 -0700
commit101a161cd308420576653c2af0da7dc66a5a8061 (patch)
treea65956b2122d72107e10a4b764d14ae975a52b1e
parent7ef9c52548bf555a8ca54bf9434dd49e6a2bd6b0 (diff)
downloadlibyaml-git-101a161cd308420576653c2af0da7dc66a5a8061.tar.gz
Remove some useless quotes
-rwxr-xr-xdocker/scripts/libyaml-dist.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/docker/scripts/libyaml-dist.sh b/docker/scripts/libyaml-dist.sh
index c154089..6f300cb 100755
--- a/docker/scripts/libyaml-dist.sh
+++ b/docker/scripts/libyaml-dist.sh
@@ -13,8 +13,8 @@ cd libyaml.git
make dist
# get the tarball filename
-tarball="$(ls yaml-*.tar.gz | head -1)"
-dirname="${tarball/.tar.gz/}"
+tarball=$(ls yaml-*.tar.gz | head -1)
+dirname=${tarball/.tar.gz/}
# Copy to output dir
cp "$tarball" /output