diff options
| -rwxr-xr-x | release-commit.sh | 34 | ||||
| -rw-r--r-- | start-iteration.sh | 5 | 
2 files changed, 0 insertions, 39 deletions
| diff --git a/release-commit.sh b/release-commit.sh deleted file mode 100755 index f05bde20..00000000 --- a/release-commit.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env bash - -function catch_errors() { -  echo "ERROR. That's life." -  exit 1 -} - -trap catch_errors ERR - -TMP_FILE='changelog.tmp' -CHANGELOG_FILE='CHANGELOG.md' - -echo "Getting current version..." -VERSION=`./version.js --current` - -echo "Generating changelog..." -./changelog.js $VERSION $TMP_FILE - -cat $CHANGELOG_FILE >> $TMP_FILE -mv -f $TMP_FILE $CHANGELOG_FILE - - -echo "Updating version..." -./version.js --remove-snapshot - -echo "CONFIRM TO COMMIT" -read WHATEVER - - -echo "Creating commit..." -git commit version.yaml CHANGELOG.md -m "chore(relase): cutting the v$VERSION release" - -echo "Creating tag..." -git tag "v$VERSION" diff --git a/start-iteration.sh b/start-iteration.sh deleted file mode 100644 index bf82478c..00000000 --- a/start-iteration.sh +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env bash - -./version.js --minor-bump -VERSION=`./version.js --curent` -git commit -a -m "chore(relase): start v$VERSION iteration" | 
