execute()

in src/main.ts [342:349]


		execute(this: Script) {
			for (const s of scriptList) {
				// check for null ``cwd to prevent calling the function by itself.
				if (s.cwd) {
					s.execute();
				}
			}
		}