diff options
| author | Sefa Eyeoglu <contact@scrumplex.net> | 2022-02-19 20:09:44 +0100 |
|---|---|---|
| committer | Sefa Eyeoglu <contact@scrumplex.net> | 2022-02-19 20:09:44 +0100 |
| commit | f50daf3f35a819d6cfd9bbe76a8b46719fd31e53 (patch) | |
| tree | 4f9f5a71776b1288b85bf8f5af2356ff4f804a7e /.github | |
| parent | 0bcf385904b22c2262e2c3c1f9ccee1d8d2081d8 (diff) | |
| download | Meta-Launcher-f50daf3f35a819d6cfd9bbe76a8b46719fd31e53.tar.gz Meta-Launcher-f50daf3f35a819d6cfd9bbe76a8b46719fd31e53.zip | |
fix(actions): remove quotes from mv command
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f159bf953..4aa47f405 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,7 +16,7 @@ jobs: run: | to_move=$(echo *) mkdir -p _site/v1 - mv "$to_move" _site/v1 + mv $to_move _site/v1 - name: Deploy uses: peaceiris/actions-gh-pages@v3 |
