Skip to content

Commit

Permalink
git portable fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasLukasczyk committed Nov 9, 2023
1 parent f0cdc4a commit c2d4e81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ARCitect",
"version": "v0.0.11",
"version": "v0.0.12",
"private": true,
"engines": {
"node": ">=v16.13",
Expand Down
2 changes: 1 addition & 1 deletion packages/renderer/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ onMounted(async () => {
window.ipc.on('CORE.MSG', console.log);
iProps.version = await window.ipc.invoke('CORE.getVersion');
const git_running = await window.ipc.invoke('GitService.run','--version');
if(git_running[0]){
if(!git_running[0]){
iProps.error_text = 'Unable to detect GIT.<br>Please verify that GIT is installed.';
iProps.error = true;
}
Expand Down

0 comments on commit c2d4e81

Please sign in to comment.