diff options
author | Cem Keylan <cem@ckyln.com> | 2021-11-09 10:44:07 +0100 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-11-09 10:44:07 +0100 |
commit | 4e54626ef07a1177d4a25ebbf900a8eefb934d84 (patch) | |
tree | dddaf1b3c3be1807f3f6c4bfa48420973e75ec6f | |
parent | 0e0656fa2f64c2c4d56c0bebf5121d2e62736a29 (diff) | |
download | repository-4e54626ef07a1177d4a25ebbf900a8eefb934d84.tar.gz |
lf: fix shellcheck error
-rwxr-xr-x | community/lf/build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/community/lf/build b/community/lf/build index 36f82daa..a34f9d45 100755 --- a/community/lf/build +++ b/community/lf/build @@ -1,6 +1,6 @@ #!/bin/sh -e -export GOPATH=$PWD/gopath +export GOPATH="$PWD/gopath" trap "go clean -modcache" EXIT INT go mod vendor |