Compare commits

..
Author SHA1 Message Date
Jeremy Soller 0b34a971b5 Update cosmic-settings 2024-08-05 10:16:25 -06:00
Jeremy Soller 11e25b3b85 Add script for tagging 2024-08-05 10:13:08 -06:00
Jeremy Soller dd6f8864ee Update submodules 2024-08-05 09:33:33 -06:00
SnêuandGitHub 23ce305735 bump submodules 2024-07-29 19:04:09 +02:00
Ian Douglas ScottandVictoria Brekenfeld 22e5cf3801 Add a DEBUGGING.md file with some information useful for debugging
I have included information about various things I've used for debugging
COSMIC. More could definitely be added.

It seems good to have some central resource for this. Though not
everything listed here is very straightforward to use.
2024-07-26 11:03:37 +02:00
22 changed files with 50 additions and 21 deletions
Executable
+29
View File
@@ -0,0 +1,29 @@
#!/usr/bin/env bash
set -e
TAG="$1"
if [ -z "$TAG" ]
then
echo "$0 [tag]" >&2
exit 1
fi
echo "Do you want to tag the current state of cosmic-epoch with the tag $TAG? (y/N)"
read answer
if [ "$answer" != "y" ]
then
echo "Did not answer y, exiting" >&2
exit 1
fi
set -x
git fetch --recurse-submodules
git tag --force "$TAG"
git submodule foreach git tag --force "$TAG"
git push --force origin tag "$TAG"
git submodule foreach git push --force origin tag "$TAG"