mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-11-25 07:45:41 +03:00
fix paths
This commit is contained in:
parent
2cbe91e227
commit
dc885c20b5
@ -236,16 +236,22 @@ if [ "$os" = "macos" ]; then
|
||||
MACOS_DMG="$(find "$BUNDLE_DIR/dmg" -depth 1 -type f -name "*.dmg")"
|
||||
MACOS_UPDATER="$(find "$BUNDLE_DIR/macos" -depth 1 -type f -name "*.tar.gz")"
|
||||
MACOS_UPDATER_SIG="$(find "$BUNDLE_DIR/macos" -depth 1 -type f -name "*.tar.gz.sig")"
|
||||
|
||||
cp "$MACOS_DMG" "$RELEASE_DIR"
|
||||
cp "$MACOS_UPDATER" "$RELEASE_DIR"
|
||||
cp "$MACOS_UPDATER_SIG" "$RELEASE_DIR"
|
||||
|
||||
info "built:"
|
||||
info " - $RELEASE_DIR/$(basename "$MACOS_DMG")"
|
||||
info " - $RELEASE_DIR/$(basename "$MACOS_UPDATER")"
|
||||
info " - $RELEASE_DIR/$(basename "$MACOS_UPDATER_SIG")"
|
||||
elif [ "$os" = "linux" ]; then
|
||||
tree "$BUNDLE_DIR"
|
||||
error "todo!"
|
||||
APPIMAGE="$(find "$BUNDLE_DIR" -depth 1 -type f -name "*.AppImage")"
|
||||
|
||||
cp "$APPIMAGE" "$RELEASE_DIR"
|
||||
|
||||
info "built:"
|
||||
info " - $RELEASE_DIR/$(basename "$APPIMAGE")"
|
||||
else
|
||||
error "unsupported os: $os"
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user