gsd-cli 0.1.25 → 0.1.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/cli.rb +1 -1
- data/lib/game_template.rb +2 -1
- data/lib/servers/minecraft_spigot.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b292d3b322cdd58ff4d8904308fd10e77601c13b77946ecbf3b81b4bdb7cd98
|
4
|
+
data.tar.gz: 31c44941458dbf36079f6b7bc0bc048a42305334e9b538ebd35796ea5098d935
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 124367a58bec77782ab942a01d63a954498a106e087fa4c3eaa8ff68194eca429f1f032e8eecd800cf00ad99838a4c981a5738322e57b497554024515d0d16c4
|
7
|
+
data.tar.gz: fad9f7cb8c142798ab17887df751736e8f8ce916137a30d40b27d448532ad9837512aa5c60426f91261d5d52881664273ddc5695e1039d2cddc357f558b9339c
|
data/lib/cli.rb
CHANGED
data/lib/game_template.rb
CHANGED
@@ -52,6 +52,7 @@ class GameTemplate
|
|
52
52
|
else
|
53
53
|
install_steam_server(install_path, steamuser, steampassword)
|
54
54
|
end
|
55
|
+
@game.post_install(install_path) if defined? @game.post_install
|
55
56
|
cli_path = `which gsd-cli`.strip()
|
56
57
|
create_unit_file(cli_path, install_path)
|
57
58
|
end
|
@@ -76,7 +77,7 @@ class GameTemplate
|
|
76
77
|
abort("STEAMCMD does not appear to be installed! Aborting...".red) if `which steamcmd`.empty?
|
77
78
|
system("$(which steamcmd) +login anonymous +quit")
|
78
79
|
system("$(which steamcmd) #{login} +force_install_dir #{install_path} +app_update #{@game.app_id} validate +quit")
|
79
|
-
@game.post_install(install_path) if defined? @game.post_install
|
80
|
+
# @game.post_install(install_path) if defined? @game.post_install
|
80
81
|
end
|
81
82
|
|
82
83
|
def get_install_path(path)
|