Skip to content

Commit

Permalink
Merge pull request #4335 from Awhiteweb/feature/typo-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
harrellbm authored Sep 17, 2022
2 parents 2072d47 + 1af2d15 commit d28dbb4
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Launch-Scripts/createShortcut.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ const createShortcut = () => {

// Misc Operating System
} else {
console.log("Automatic shortcut creation is not currently supported on your operating system. If you would like to see your operating system added please reachout on discord or telegram to let the devs know.")
console.log("Automatic shortcut creation is not currently supported on your operating system. If you would like to see your operating system added please reach out on discord or telegram to let the devs know.")
return 'Shortcuts not supported on your system'
}
}
Expand Down
10 changes: 5 additions & 5 deletions Launch-Scripts/runPlatform.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const fatalErrorHelp = () => {
console.log('* If your device does not have MORE than 8GB of RAM then please use the minMemo option.')
console.log('* If your OS does not have a user interface, please use the noBrowser option.')
console.log('')
console.log('If you continue having trouble to start the Superalgos Platform Client try:')
console.log('If you continue having trouble starting the Superalgos Platform Client try:')
console.log('')
console.log('node platform minMemo noBrowser')
return 'fatal error help message displayed'
Expand Down Expand Up @@ -37,15 +37,15 @@ const runPlatform = () => {
console.log('')
console.log('OPTIONS:')
console.log('')
console.log(' help: Optional. Use it to see this helping information.')
console.log(' help: Optional. Use it to see this helpful information.')
console.log(' noBrowser: Optional. Use it to launch Superalgos Platform Client only. The Superalgos Platform UI will not be loaded.')
console.log(' minMemo: Optional. Use it when your hardware has less than 8 Gb or memory.')
console.log(' demoMode: Optional. Use it to launch Superalgos in Demo Mode. Users will be able to use the UI but not run Tasks.')
console.log('PROJECT: The name of the project to load on startup. (use with workspace)')
console.log('')
console.log('WORKSPACE: The name of the workspace to load on startup.')
console.log('')
console.log('If you are having an error while trying to run the Superalgos Platform Client, consider this:')
console.log('If you are getting errors while trying to run the Superalgos Platform Client, consider this:')

return 'help message has been displayed'
}
Expand Down Expand Up @@ -104,15 +104,15 @@ const runPlatform = () => {
return 'client running'
} catch (err) {
console.log('')
console.log('Fail to create Superalgos Platform Client Process.')
console.log('Failed to create Superalgos Platform Client Process.')
console.log('')

fatalErrorHelp()
return 'client error'
}
} else {
console.log('')
console.log('ERROR: node_modules does not exist. Try running "node setup" to solve this issue. Then try again. You can finded detailed instructions for this in the ReadMe.')
console.log('ERROR: node_modules does not exist. Try running "node setup" to solve this issue. Then try again. You can find detailed instructions for this in the ReadMe.')
console.log('')
}

Expand Down
4 changes: 2 additions & 2 deletions Launch-Scripts/runSetup.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ const runSetup = (tfjs=false) => {
(error, stdout) => {
if (error) {
console.log('')
console.log('There was an error installing some dependencies error: ')
console.log('There was an error installing some dependencies: ')
console.log('')
console.log(error)
process.exit(1)
Expand All @@ -174,8 +174,8 @@ const runSetup = (tfjs=false) => {
} catch (e) {
console.log('')
console.log('Event error: ')
console.log(e)
console.log('')
console.log(e)
process.exit(1)
}
})
Expand Down
2 changes: 1 addition & 1 deletion Launch-Scripts/runSetupPlugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ const cloneTheRepoPromise = async (resolve) => {
resolve()
})
.catch((err) => {
console.log('[ERROR] Setup of repo ' + global.env.PROJECT_PLUGIN_MAP[propertyName].repo + ' failed. You will need to set the git remote manually.')
console.log('[ERROR] Setup of repo ' + global.env.PROJECT_PLUGIN_MAP[propertyName].repo + ' failed. You will need to set the git remote manually. ')
console.log('')
console.log(err)
resolve()
Expand Down

0 comments on commit d28dbb4

Please sign in to comment.