mirror of
https://github.com/LukeHagar/skeleton.git
synced 2025-12-09 20:57:45 +00:00
9 lines
325 B
JavaScript
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') |