Skip to content

Commit

Permalink
fix(deploy): fix app naming on deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
aurrelhebert committed Mar 7, 2025
1 parent 17b81b7 commit 67bf7c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/git.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ async function onAuth () {

export async function addRemote (remoteName, url) {
const repo = await getRepo();
const safeRemoteName = slugify(remoteName);
const safeRemoteName = slugify(remoteName, { remove: ":"});

Check failure on line 32 in src/models/git.js

View workflow job for this annotation

GitHub Actions / Build

A space is required before '}'

Check failure on line 32 in src/models/git.js

View workflow job for this annotation

GitHub Actions / Build

Strings must use singlequote
const allRemotes = await git.listRemotes({ ...repo });
const existingRemote = _.find(allRemotes, { remote: safeRemoteName });
if (existingRemote == null) {
Expand Down

0 comments on commit 67bf7c0

Please sign in to comment.