Skip to content
This repository was archived by the owner on Mar 23, 2026. It is now read-only.

Commit b4cef81

Browse files
authored
avoid wrapper script
1 parent ce47f1b commit b4cef81

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

make-appimage.sh

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ export STRACE_MODE=0
1616

1717
# Deploy dependencies
1818
mkdir -p ./AppDir/bin
19-
echo '#!/bin/sh
20-
exec dotnet "$APPDIR"/lib/GPU-T/GPU-T.dll' > ./AppDir/bin/gpu-t
21-
chmod +x ./AppDir/bin/gpu-t
22-
19+
cp -r /usr/lib/GPU-T/* ./AppDir/bin
20+
cp -r /usr/bin/gpu-t ./AppDir/bin
2321
quick-sharun \
24-
/usr/lib/GPU-T \
22+
./AppDir/bin/* \
2523
/usr/lib/libSM.so* \
2624
/usr/lib/libICE.so*
25+
echo 'DOTNET_ROOT=${SHARUN_DIR}/bin' >> ./AppDir/.env
2726

2827
# Additional changes can be done in between here
2928

0 commit comments

Comments
 (0)