Skip to content

Commit

Permalink
added option to not compress
Browse files Browse the repository at this point in the history
  • Loading branch information
humandecoded committed Feb 18, 2023
1 parent 09d0b7b commit eb63822
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build-vbox.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ while getopts ":a:b:D:o:f:hkL:m:P:r:s:S:T:U:v:x:z" opt; do
(U) USERPASS=$OPTARG ;;
(v) VARIANT=$OPTARG ;;
(x) VERSION=$OPTARG ;;
(z) ZIP=true ;;
(z) ZIP=false ;;
(*) echo "$USAGE" >&2; exit 1 ;;
esac
done
Expand Down
2 changes: 1 addition & 1 deletion build-vmware.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ while getopts ":a:b:D:o:f:hkL:m:P:r:s:S:T:U:v:x:z" opt; do
(U) USERPASS=$OPTARG ;;
(v) VARIANT=$OPTARG ;;
(x) VERSION=$OPTARG ;;
(z) ZIP=true ;;
(z) ZIP=false ;;
(*) echo "$USAGE" >&2; exit 1 ;;
esac
done
Expand Down
2 changes: 1 addition & 1 deletion build.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ while getopts ":a:b:D:o:f:hkL:m:P:r:s:S:T:U:v:x:z" opt; do
(U) USERPASS=$OPTARG ;;
(v) VARIANT=$OPTARG ;;
(x) VERSION=$OPTARG ;;
(z) ZIP=true ;;
(z) ZIP=false ;;
(*) echo "$USAGE" >&2; exit 1 ;;
esac
done
Expand Down

0 comments on commit eb63822

Please sign in to comment.