Skip to content

Commit

Permalink
fix: convert to string
Browse files Browse the repository at this point in the history
  • Loading branch information
peaceiris committed Feb 19, 2020
1 parent 0d912a1 commit cbe4d56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export async function run(): Promise<void> {

const date = new Date();
const unixTime = date.getTime();
await git.setRepo(inps, remoteURL, unixTime);
await git.setRepo(inps, remoteURL, `${unixTime}`);

try {
await exec.exec('git', ['remote', 'rm', 'origin']);
Expand Down

0 comments on commit cbe4d56

Please sign in to comment.