Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Commit

Permalink
add more comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rlcundiff committed Apr 20, 2020
1 parent cfb779d commit 341fd18
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 0 additions & 2 deletions tag.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
#!/bin/bash

#*****************************************************************
#*
#* Copyright 2020 IBM Corporation
Expand All @@ -17,7 +16,6 @@
#*
#*****************************************************************
# does git tag on all projects with releases

tagName=$1
tagMessage=$2

Expand Down
6 changes: 6 additions & 0 deletions updateOperatorForNewRelease.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,21 @@
#*
#*****************************************************************
# Update operator to create a new releases dir and make the new release the lastest release

# create the branch for the update
cd ../operator
git checkout master
git pull
git checkout -b updateOperatorForNewRelease

# create a dir for the new release and update the contents of the latest dir
. ./version.sh
newdir="releases/$VERSION"
mkdir $newdir
cp kappnav.yaml kappnav-delete.yaml kappnav-delete-CR.yaml $newdir
cp -r $newdir releases/lastest

# update operator origin
git add .
git commit -m "Update release names in operator yaml files"
git push origin updateOperatorForNewRelease
Expand Down

0 comments on commit 341fd18

Please sign in to comment.