-
-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix tizen paths for packaging apps #1184
Conversation
const tOut = path.join(tDir, 'output'); | ||
const tIntermediate = path.join(tDir, 'intermediate'); |
Check warning
Code scanning / CodeQL
Unsafe shell command constructed from library input Medium
library input
shell command
copyFileSync(tProjectFile, path.join(tBuild, '.tproject')); | ||
copyFileSync(configXml, path.join(tBuild, 'config.xml')); | ||
|
||
await execCLI(c, CLI_TIZEN, `build-web -- ${tBuild} -out ${tIntermediate}`); |
Check warning
Code scanning / CodeQL
Unsafe shell command constructed from library input Medium
library input
shell command
This string concatenation which depends on
library input
shell command
copyFileSync(configXml, path.join(tBuild, 'config.xml')); | ||
|
||
await execCLI(c, CLI_TIZEN, `build-web -- ${tBuild} -out ${tIntermediate}`); | ||
await execCLI(c, CLI_TIZEN, `package -- ${tIntermediate} -s ${certProfile} -t wgt -o ${tOut}`); |
Check warning
Code scanning / CodeQL
Unsafe shell command constructed from library input Medium
library input
shell command
This string concatenation which depends on
library input
shell command
This string concatenation which depends on
library input
shell command
* main: (35 commits) add ts-coverage tool update json schema, fix config loading any killing spree type coverage, kill any types for program, workspaces, runtimes typefy context cli strong type for c.program kill any rename RenativeConfigFile to ConfigFileBuildConfig add runtime config schema, cleanup npm types fixes typed npm package files clean code fix/buildHooks_path context type hardening typed project template typed plugin templates finish config file type migration more ts fixes ts fixes ... # Conflicts: # packages/template-starter/package.json
Description