Corrected output path for zip file in build tool

Signed-off-by: Eric F Crist <ecrist@secure-computing.net>
This commit is contained in:
Eric F Crist 2015-10-25 22:51:55 -05:00
parent d92d29803b
commit 6e643f7224

View File

@ -125,7 +125,7 @@ make_tar() {
}
make_zip() {
(cd "$DIST_ROOT/windows/"; zip -qr "../$BIN_DEST/${PV}.zip" "$PV") || die "zip failed"
(cd "$DIST_ROOT/windows/"; zip -qr "../../$BIN_DEST/${PV}.zip" "$PV") || die "zip failed"
note "zip file created at: $BIN_DEST/${PV}.zip"
}