mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
deploy: use single-quoted argument (#11951)
This commit is contained in:
parent
7bc6b57f5d
commit
006c2f6b22
1 changed files with 2 additions and 2 deletions
|
@ -35,9 +35,9 @@ function upload_assets {
|
|||
git clone --quiet --depth 1 "git@github.com:tldr-pages/tldr-pages.github.io.git" "$SITE_HOME"
|
||||
|
||||
mv -f "$TLDR_ARCHIVE" "$SITE_HOME/assets/"
|
||||
find "$TLDRHOME/language_archives" -maxdepth 1 -name "*.zip" -exec mv -f {} "$SITE_HOME/assets/" \;
|
||||
find "$TLDRHOME/language_archives" -maxdepth 1 -name '*.zip' -exec mv -f {} "$SITE_HOME/assets/" \;
|
||||
cp -f "$TLDRHOME/index.json" "$SITE_HOME/assets/"
|
||||
find "$TLDRHOME/scripts/pdf" -maxdepth 1 -name "*.pdf" -exec mv -f {} "$SITE_HOME/assets/" \;
|
||||
find "$TLDRHOME/scripts/pdf" -maxdepth 1 -name '*.pdf' -exec mv -f {} "$SITE_HOME/assets/" \;
|
||||
|
||||
cd "$SITE_HOME/assets"
|
||||
sha256sum -- index.json *.zip > tldr.sha256sums
|
||||
|
|
Loading…
Add table
Reference in a new issue