aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xscripts/gh-pages.sh2
-rwxr-xr-xscripts/update-version.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gh-pages.sh b/scripts/gh-pages.sh
index e44bab4..a091820 100755
--- a/scripts/gh-pages.sh
+++ b/scripts/gh-pages.sh
@@ -1,6 +1,6 @@
1#!/bin/bash 1#!/bin/bash
2 2
3git checkout -- .gitignore index.html && \ 3git checkout gh-pages -- .gitignore index.html && \
4npm run build && npm run docs && \ 4npm run build && npm run docs && \
5git branch --force gh-pages HEAD && \ 5git branch --force gh-pages HEAD && \
6git checkout gh-pages && \ 6git checkout gh-pages && \
diff --git a/scripts/update-version.sh b/scripts/update-version.sh
index e5f24db..d68c713 100755
--- a/scripts/update-version.sh
+++ b/scripts/update-version.sh
@@ -9,6 +9,6 @@ jq ".version = \"$ANSWER\"" package.json >$TMP
9cat $TMP >package.json 9cat $TMP >package.json
10 10
11git reset 11git reset
12git add package.json; git commit -m "chore(relase): $ANSWER" 12git add package.json; git commit -m "chore(release): $ANSWER"
13 13
14git show HEAD 14git show HEAD