Skip to content

Commit 99a608a

Browse files
Fix linux pathing issue
1 parent c828edc commit 99a608a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/linux-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,20 +57,20 @@ jobs:
5757
find . -name "*.pyc" -delete
5858
5959
# Check if RELEASE_README.md exists and copy/rename it
60-
if [ -f "AutoExpress/RELEASE_README.md" ]; then
61-
mv "AutoExpress/RELEASE_README.md" "AutoExpress/README.md"
60+
if [ -f "./AutoExpress/RELEASE_README.md" ]; then
61+
mv "./AutoExpress/RELEASE_README.md" "./AutoExpress/README.md"
6262
else
6363
echo "Warning: RELEASE_README.md not found"
6464
fi
6565
6666
# Make run script executable
67-
if [ -f "AutoExpress/run.sh" ]; then
68-
chmod +x "AutoExpress/run.sh"
67+
if [ -f "./AutoExpress/run.sh" ]; then
68+
chmod +x "./AutoExpress/run.sh"
6969
else
7070
echo "Warning: run.sh not found"
7171
fi
7272
73-
mv "AutoExpress" "$folder"
73+
mv "./AutoExpress" "$folder"
7474
7575
# Archive the folder
7676
zip -r "${folder}_Release.zip" "$folder"

0 commit comments

Comments
 (0)