Files
skeleton/scripts/checkout.cjs
AdrianGonz97 31c9c65146 first try
2023-05-15 00:52:14 -04:00

9 lines
325 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/create-skeleton-app packages/create-skeleton-app')
shell.exec('git clone https://github.com/skeletonlabs/skeletonlabs.co sites/skeletonlabs.co')