10 lines
201 B
Bash
Executable File
10 lines
201 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
|
|
mv _kustomization.yml kustomization.yml.tmp
|
|
mv kustomization.yml _kustomization.yml
|
|
mv kustomization.yml.tmp kustomization.yml
|
|
git add .
|
|
git commit -m "Update the state"
|
|
git push
|