We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb5df50 commit d9edb3bCopy full SHA for d9edb3b
snap/snapcraft.yaml
@@ -150,7 +150,7 @@ parts:
150
cp org.godotengine.Godot.desktop $CRAFT_PART_INSTALL/
151
152
craftctl set version=`python3 -c "import version; print(f'{version.major}.{version.minor}.{version.patch}', end='')"`
153
- craftctl set grade=`python3 -c "import version; print(f'{version.status}', end='')"`
+ craftctl set grade=`python3 -c "import version; status = 'stable' if version.status == 'stable' else 'devel'; print(f'{status}', end='')"`
154
organize:
155
org.godotengine.Godot.desktop: meta/gui/org.godotengine.Godot.desktop
156
0 commit comments