Rename directory: app -> bridge

This commit is contained in:
hensm
2023-02-26 18:04:22 +00:00
parent 3864ffdbf5
commit 33bcbc0dca
38 changed files with 29 additions and 26 deletions

View File

@@ -0,0 +1,11 @@
#!/bin/sh
# If the target location isn't root, we need to rewrite
# the manifest path to point to the user directory.
if [ "$2" != "/" ]; then
installedManifestPath=$2"/{{{manifestPath}}}/{{{manifestName}}}"
sed -i.bak 's,{{{executablePath}}},'$2'{{{executablePath}}},g' "$installedManifestPath"
rm "$installedManifestPath.bak"
fi
exit 0