Skip to content

Instantly share code, notes, and snippets.

@mumumu
Last active October 3, 2021 19:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mumumu/b2b77b15e702bc24a5233acc98ac913a to your computer and use it in GitHub Desktop.
Save mumumu/b2b77b15e702bc24a5233acc98ac913a to your computer and use it in GitHub Desktop.
PhD のパッケージの api と release レベルが異なっており、そのままではエラーになるため、このpatchで書き換える
diff --git a/package.xml b/package.xml
index 3a12e98..1a65719 100644
--- a/package.xml
+++ b/package.xml
@@ -66,8 +66,8 @@
<api>1.1.0</api>
</version>
<stability>
- <release>snapshot</release>
- <api>snapshot</api>
+ <release>devel</release>
+ <api>devel</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
diff --git a/package_generic.xml b/package_generic.xml
index c1d0420..ac46eee 100644
--- a/package_generic.xml
+++ b/package_generic.xml
@@ -41,8 +41,8 @@
<api>1.1.0</api>
</version>
<stability>
- <release>snapshot</release>
- <api>snapshot</api>
+ <release>devel</release>
+ <api>devel</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
diff --git a/package_php.xml b/package_php.xml
index 3fca458..43371cd 100644
--- a/package_php.xml
+++ b/package_php.xml
@@ -35,8 +35,8 @@
<api>1.1.0</api>
</version>
<stability>
- <release>snapshot</release>
- <api>snapshot</api>
+ <release>devel</release>
+ <api>devel</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment