I get this error in windows CMD:
> fastify-website@1.0.0 build:get-releases C:\Users\Karol\Desktop\wbs
> src/scripts/downloadReleases.js fastify/fastify build-temp/releases/ v0.11.0
'src' is not recognized as an internal or external command,
operable program or batch file.
My package.json:
"name": "fastify-website",
"version": "1.0.0",
"description": "A static website builder for metalsmith",
"scripts": {
"build:cleanup": "rimraf build-temp",
"build:create-temp-folder": "mkdirp build-temp",
"build:get-releases": "src/scripts/downloadReleases.js fastify/fastify build-temp/releases/ v0.11.0",
Description
so basically npm start works till it gets to script "build:get-releases"... I tried messing with package json but didnt help, also, the directory src/scripts/downloadReleases.js DOES exist.
Is it because it was written typically for linux and im using windows? Because im ready to install linux if its true, but i need confirmation
(PS i downloaded this straight from github and it should be working, so my assumption was linux can read this specific content of package.json file properly)