change the clone order, otherwise it'll fail early for normal contributors

This commit is contained in:
AdrianGonz97
2023-05-18 10:06:09 -04:00
parent 4de4b5f152
commit 4cb0e7c977

View File

@@ -5,5 +5,9 @@ if (!shell.which("git")) {
shell.exit(1);
}
shell.exec("git clone https://github.com/skeletonlabs/skeletonlabs.co sites/skeletonlabs.co");
shell.exec("git clone https://github.com/skeletonlabs/create-skeleton-app packages/create-skeleton-app");
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"
);