mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
Modified install script
This commit is contained in:
parent
4cb407d83d
commit
e25d70c623
1 changed files with 5 additions and 1 deletions
|
|
@ -129,7 +129,11 @@ else
|
|||
fi
|
||||
|
||||
# Replace path to host
|
||||
sed -i "" -e "s/%%replace%%/$ESCAPED_PATH/g" "$TARGET_DIR/$APP_NAME.json"
|
||||
if [ $(uname -s) == 'Darwin' ]; then
|
||||
sed -i "" -e "s/%%replace%%/$ESCAPED_PATH/g" "$TARGET_DIR/$APP_NAME.json"
|
||||
else
|
||||
sed -i -e "s/%%replace%%/$ESCAPED_PATH/g" "$TARGET_DIR/$APP_NAME.json"
|
||||
fi
|
||||
|
||||
# Set permissions for the manifest so that all users can read it.
|
||||
chmod o+r "$TARGET_DIR/$APP_NAME.json"
|
||||
|
|
|
|||
Loading…
Reference in a new issue