fix: convert to string

This commit is contained in:
peaceiris 2020-02-19 22:20:21 +09:00
parent 0d912a1314
commit cbe4d56fb8

View File

@ -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']);