Skip to content

Commit

Permalink
update skeet add ghSecret cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
POPPIN-FUMI committed Nov 7, 2023
1 parent 87ccef2 commit b07b153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/git/addEnv.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { execSyncCmd } from '@/lib'

export const addEnv = async (key: string, value: string) => {
const cmdLine = ['gh', 'secret', 'set', key, '-b', `"${value}"`]
const cmdLine = ['gh', 'secret', 'set', key, '-b', `${value}`]
await execSyncCmd(cmdLine)
}

0 comments on commit b07b153

Please sign in to comment.