summaryrefslogtreecommitdiff
path: root/defaults/assets/prepare.sh
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-02-06 20:31:59 -0500
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-02-06 20:31:59 -0500
commit11e86aa9da41e3f19eded2eec3f046f08dd1c3da (patch)
treee789fc9529d981a160dd8916135e5712956b0dc2 /defaults/assets/prepare.sh
parent160c95e2d39c32f6cb1e4601139e056350f35d29 (diff)
downloadDecky-Framegen-11e86aa9da41e3f19eded2eec3f046f08dd1c3da.tar.gz
Decky-Framegen-11e86aa9da41e3f19eded2eec3f046f08dd1c3da.zip
committing to the bit
Diffstat (limited to 'defaults/assets/prepare.sh')
-rwxr-xr-xdefaults/assets/prepare.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/defaults/assets/prepare.sh b/defaults/assets/prepare.sh
index 755f8de..f41dfe7 100755
--- a/defaults/assets/prepare.sh
+++ b/defaults/assets/prepare.sh
@@ -4,7 +4,7 @@ set -x # Enable debugging
exec > >(tee -i /tmp/prepare.log) 2>&1 # Log output and errors
mod_path="$HOME/fgmod"
-bin_path="$(dirname "$(realpath "$0")")/../bin"
+# bin_path="$(dirname "$(realpath "$0")")/../bin"
assets_path="$(dirname "$(realpath "$0")")"
standalone=1
@@ -17,7 +17,7 @@ mkdir -p "$mod_path"
cd "$mod_path" || exit 1
# Copy required files from bin directory into the current directory
-cp "$bin_path/assets.zip" .
+cp "$assets_path/assets.zip" .
# Unzip assets.zip so that all files are in the modpath root, then remove the zip file
unzip -j -o assets.zip && rm assets.zip