Skip to content

Commit

Permalink
add macos pkg link to /usr/bin/
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Glonek committed Dec 14, 2022
1 parent b055ca6 commit 3b45948
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* fix aws missing-region discovery
* when parsing aerospike.conf, ignore commented out lines while parsing directory paths
* allow specifying multiple security group IDs in AWS
* change macos pkg install location to `/usr/bin/` instead of `/usr/local/bin/` due to missing `$PATH` on some installations

#### 4.4.2
* handle aws library bug regarding unset regions
Expand Down
2 changes: 2 additions & 0 deletions bin/notarize/packages/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,7 @@ uname -p |grep arm && BIN=aerolab-macos-arm64 || echo "amd"
uname -m |grep arm && BIN=aerolab-macos-arm64 || echo "amd"
chmod 755 /Library/aerolab/*
rm -f /usr/local/bin/aerolab || echo "first_install"
rm -f /usr/bin/aerolab || echo "first_install"
ln -s /Library/aerolab/${BIN} /usr/local/bin/aerolab
ln -s /Library/aerolab/${BIN} /usr/bin/aerolab || echo "usr-bin not allowed"

0 comments on commit 3b45948

Please sign in to comment.