chore(version): bump version

This commit is contained in:
Mauricio Siu
2024-10-30 21:48:19 -06:00
parent 97715a47b3
commit 6c92e6efc9
17 changed files with 14 additions and 31 deletions

View File

@@ -188,7 +188,6 @@ export const getCustomGitCloneCommand = async (
command.push(`echo "Cloned Custom Git ${customGitUrl}: ✅" >> ${logPath};`);
return command.join("\n");
} catch (error) {
console.log(error);
throw error;
}
};

View File

@@ -47,8 +47,6 @@ export const refreshGitlabToken = async (gitlabProviderId: string) => {
const expiresAt = Math.floor(Date.now() / 1000) + data.expires_in;
console.log("Refreshed token");
await updateGitlab(gitlabProviderId, {
accessToken: data.access_token,
refreshToken: data.refresh_token,