Solved Automating updates for Rust Oxide server
Discussion in 'Rust Discussion' started by Ryan Pound, May 5, 2016.
-
this wasn't working for me, i changed to :
wget --no-check-certificate https://github.com/OxideMod/Oxide/releases/download/latest/Oxide-Rust.zip
changed the address this line points too, working fine now! -
Wulf Community Admin
Generally if a thread is pushing on 1-2 years old, it will have 1-2 year old information.
-
hi again! so, updatere stopped working again, the path : https://github.com/OxideMod/Oxide/releases/download/latest/Oxide-Rust.zip, works fine, 7zip is where the problem has been. getting return of unknown command. Got it working again by removing the -spe from the 7z command line :
"Where your 7Zip folder is located\7-Zip\7z.exe" x -spe "Where ever you want this zip to save will be delete by the end on update\Oxide-Rust.zip" -o"Where your Rust server directory and batch file folder is located" -aoa
del "Where ever you want this zip to save will be delete by the end on update\Oxide-Rust.zip"
del "Where your Rust server directory and batch file folder is located\_start-example.bat"
goto SERV
changed to:
"C:\Program Files\7-Zip\7z.exe" x "D:\Downloads\Oxide-Rust.zip" -o"D:\Games\Steam\RustServer" -aoa
del "D:\Downloads\Oxide-Rust.zip"
goto SERV
seems to have fixed issue