Skip to content

Commit

Permalink
fix(birdie): opening folders should use the Y drive path
Browse files Browse the repository at this point in the history
  • Loading branch information
rudoi committed Jun 7, 2024
1 parent ccc9be3 commit a29e344
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions birdie/src/routes/source/submit/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import { getRepoStatus, revertFiles, submit } from '$lib/repo';
import {
allModifiedFiles,
appConfig,
commitMessage,
repoConfig,
repoStatus,
Expand All @@ -31,7 +30,8 @@
const handleOpenDirectory = async (path: string) => {
const parent = path.split('/').slice(0, -1).join('/');
const fullPath = `${$appConfig.repoPath}/${parent}`;
// Birdie opens up the Y drive
const fullPath = `Y:/${parent}`;
await openUrl(fullPath);
};
Expand Down

0 comments on commit a29e344

Please sign in to comment.