Files
skeleton/scripts/checkout.cjs
2023-05-16 18:29:15 -04:00

11 lines
225 B
JavaScript

var shell = require("shelljs");
if (!shell.which("git")) {
shell.echo("Sorry, this script requires git");
shell.exit(1);
}
shell.exec(
"git clone https://github.com/skeletonlabs/skeletonlabs.co sites/skeletonlabs.co"
);