merge steps
This commit is contained in:
@@ -1,9 +1,11 @@
|
||||
import { install } from "./stages/install";
|
||||
import { configure } from "./stages/configure";
|
||||
import { push } from "./stages/push";
|
||||
|
||||
(async () => {
|
||||
await install();
|
||||
await configure();
|
||||
await push();
|
||||
})().catch((e) => {
|
||||
console.error(e);
|
||||
process.exit(1);
|
||||
|
||||
@@ -1,8 +0,0 @@
|
||||
import { push } from "./stages/push";
|
||||
|
||||
(async () => {
|
||||
await push();
|
||||
})().catch((e) => {
|
||||
console.error(e);
|
||||
process.exit(1);
|
||||
});
|
||||
Reference in New Issue
Block a user