Skip to content
Snippets Groups Projects
Commit 7bfffb5c authored by echicken's avatar echicken :chicken:
Browse files

Accept a git tag as an argument to the script. sbbs317 will download the...

Accept a git tag as an argument to the script.  sbbs317 will download the Synchronet BBS 3.17 compatible release.  If absent, the master archive will be fetched.
parent 1dee7b77
Branches
Tags
No related merge requests found
......@@ -116,7 +116,8 @@ function remove_dir(dir) {
rmdir(dir);
}
const zip_url = 'https://codeload.github.com/echicken/synchronet-web-v4/zip/master';
const url_suffix = argc > 0 ? argv[0] : master;
const zip_url = 'https://codeload.github.com/echicken/synchronet-web-v4/zip/' + url_suffix;
const download_target = system.temp_dir + 'webv4.zip';
const extract_dir = fullpath(system.temp_dir);
const temp_dir = fullpath(extract_dir + '/synchronet-web-v4-master');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment