We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15c07c6 commit 6871595Copy full SHA for 6871595
.gitignore
@@ -0,0 +1,3 @@
1
+build
2
+.idea
3
+cmake-build-debug
src/update.hpp
@@ -27,7 +27,7 @@ string execute(const char *command) {
27
// update function
28
void update() {
29
// get version number from https://junlang.imjcj.eu.org/VERSION
30
- string result = execute("curl -s https://junlang.imjcj.eu.org/VERSION");
+ string result = execute("curl -s https://junlang.imjcj.eu.org/VERSION_DEVE");
31
result = result.substr(44);
32
// compare version number with _VERSION_
33
if (result != _VERSION_ + '\n') {
0 commit comments