Skip to content

Commit e535882

Browse files
committed
Fix path of path file
1 parent a08f2dc commit e535882

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

script.bash

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ cd "$RUNNER_TEMP"
77
export AUTIFY_CLI_INSTALL_USE_CACHE=1
88
curl -L "$INPUT_SHELL_INSTALLER_URL" | bash -xe
99

10-
1110
while IFS= read -r line; do
1211
if [ "$(command -v cygpath)" ]; then
1312
cygpath -w "$line" >> "$GITHUB_PATH"
1413
else
1514
echo "$line" >> "$GITHUB_PATH"
1615
fi
17-
done < "./autify/path"
16+
done < "$RUNNER_TEMP/autify/path"

0 commit comments

Comments
 (0)