When cloning new repository in git facing the issue as shown below Solution Run Git Bash as administrator. Change the directory to the folder we need to clone. Run the following command: git config –system core.longpaths true git config –global core.longpaths true
Tag: terminal
How to resolve Error: Node Sass does not yet support your current environment: Windows 64-bit.
This error message does not indicate a problem with Ionic, but rather with node-sass, which is specified to execute in your Gulp file. Try to run the below code npm rebuild node-sass (with -g if node-sass was installed globally). If it didn’t rectify the issue then npm uninstall node-sass && npm install node-sass (again, with… Continue reading How to resolve Error: Node Sass does not yet support your current environment: Windows 64-bit.
Issue – gulp: File C:\Users\user\AppData\Roaming\npm\gulp.ps1 cannot be loaded because running scripts is disabled on this system
Issue Solution
Resolve Error “Invalid login attempt” during Gulp Fetch or Deployment with Token-Based Authentication
With NetSuite 2018 and later, a two-factor authentication (2FA) is mandatory when authenticating users via developer tools. A user is expected to create a new token, if no token exists, during the fetching and deployment of themes and/or extensions. The user may see an “Invalid login attempt” error message during this process due incorrect time… Continue reading Resolve Error “Invalid login attempt” during Gulp Fetch or Deployment with Token-Based Authentication
Error: The system cannot execute the specified program.
Got this error when trying to use Node version 14.19.0 after installing it using the gulp command. Solution The error message “The system cannot execute the specified program” typically indicates that the command we are trying to run is not recognized by the operating system. Make sure you have Node Version Manager (NVM) installed correctly.… Continue reading Error: The system cannot execute the specified program.
Error in gulp extension:fetch
Not able to fetch the extension using gulp extension:fetch. Some error is showing when using this fetch command. Solution: To resolve this, First uninstall the currently using node version and re-install it. nvm uninstall <version> nvm install <version> Then try to fetch again.
exit status 5: Access is denied
Got this error when trying to change the node based on the development tool Solution Open the Command Prompt as administrator > Check if the required node version is available or not using the command “nvm ls“. > If the node is available run the command “nvm use x.x.x“ > If the node is not… Continue reading exit status 5: Access is denied
“nvm use v.v.v” will return the error “exit status 145: The directory is not empty.”
Got this error when trying to use different node Solution> Go to C:\Program Files\nodejs.> Rename that folder to C:\Program Files\nodejsx> After that please check “nvm use v.v.v.”
Solve Error: System limit for number of file watchers reached , while fetching the theme.
Solution: In the terminal run the code echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p This fixes the error and allows the theme fetch.
Solve TypeError: arr.ReadUint16BE is not a function while setting up local for kilimanjaro sca version.
While running kilimajaro version locally, error noticed as given below.TypeError: arr.ReadUint16BE is not a function Solution: