diff options
| -rw-r--r-- | GNUmakefile | 2 | ||||
| -rwxr-xr-x | vis-single.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile index 052c300..2cb1b37 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -188,6 +188,6 @@ standalone: clean single: standalone cp vis-single.sh vis-single strip vis - tar c vis lua/ | gzip -9 >> vis-single + tar c vis vis-clipboard vis-complete vis-menu vis-open lua/ | gzip -9 >> vis-single .PHONY: standalone local dependencies-common dependencies-local dependencies-clean diff --git a/vis-single.sh b/vis-single.sh index b6ff69e..e779b67 100755 --- a/vis-single.sh +++ b/vis-single.sh @@ -7,7 +7,7 @@ trap 'rm -rf "$VISTMP"' EXIT INT QUIT TERM HUP sed '1,/^__TAR_GZ_ARCHIVE_BELOW__$/d' "$0" | gzip -d | tar xC "$VISTMP" -"$VISTMP/vis" "$@" +PATH="$VISTMP:$PATH" "$VISTMP/vis" "$@" exit $? |
