Skip to content

Commit

Permalink
release 6.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
saqqdy committed Feb 2, 2024
1 parent 6e6e9f2 commit 13384f5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions packages/gitmars/src/gitm-admin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ publishProgram.action(
if (opt.build && (!level || level < 4)) {
cmd[type] = cmd[type].concat([
{
cmd: `gitm build ${appName} --env bug --app ${
cmd: `gitm build ${appName} --confirm --env bug --app ${
opt.build === true ? 'all' : opt.build
} ${opt.data ? ' --data ' + opt.data : ''}`,
config: {
Expand All @@ -696,7 +696,7 @@ publishProgram.action(
if (type === 'release' && opt.build && (!level || level < 4)) {
cmd[type] = cmd[type].concat([
{
cmd: `gitm build ${appName} --env prod --app ${
cmd: `gitm build ${appName} --confirm --env prod --app ${
opt.build === true ? 'all' : opt.build
} ${opt.data ? ' --data ' + opt.data : ''}`,
config: {
Expand Down
6 changes: 3 additions & 3 deletions packages/gitmars/src/gitm-combine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ program.action(async (type: string, name: string, opt: GitmBuildOption): Promise
if (opt.build) {
cmd = cmd.concat([
{
cmd: `gitm build ${appName} --env dev --app ${
cmd: `gitm build ${appName} --confirm --env dev --app ${
opt.build === true ? 'all' : opt.build
} ${opt.data ? ' --data ' + opt.data : ''}`,
config: {
Expand Down Expand Up @@ -591,7 +591,7 @@ program.action(async (type: string, name: string, opt: GitmBuildOption): Promise
if (type === 'bugfix') {
cmd = cmd.concat([
{
cmd: `gitm build ${appName} --env bug --app ${
cmd: `gitm build ${appName} --confirm --env bug --app ${
opt.build === true ? 'all' : opt.build
} ${opt.data ? ' --data ' + opt.data : ''}`,
config: {
Expand All @@ -607,7 +607,7 @@ program.action(async (type: string, name: string, opt: GitmBuildOption): Promise
if (type === 'support' && opt.noBugfix) {
cmd = cmd.concat([
{
cmd: `gitm build ${appName} --env bug --app ${
cmd: `gitm build ${appName} --confirm --env bug --app ${
opt.build === true ? 'all' : opt.build
} ${opt.data ? ' --data ' + opt.data : ''}`,
config: {
Expand Down

0 comments on commit 13384f5

Please sign in to comment.