mirror of
https://code.forgejo.org/actions/checkout.git
synced 2024-11-04 17:52:52 +01:00
9 lines
176 B
Bash
Executable file
9 lines
176 B
Bash
Executable file
#!/bin/sh
|
|
|
|
mkdir override-git-version
|
|
cd override-git-version
|
|
echo "#!/bin/sh" > git
|
|
echo "echo override git version 1.2.3" >> git
|
|
chmod +x git
|
|
echo "::add-path::$(pwd)"
|
|
cd ..
|