Skip to content

Commit

Permalink
MORE PATHING
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellacosse committed Apr 3, 2024
1 parent 1876f2b commit 617d571
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/src/cordova/build.action.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ function getXcodeBuildArgs(platform) {
}
return [
'-workspace',
path.join(getRootDir(), 'src', 'cordova', 'apple', workspaceFilename),
path.join(getRootDir(), 'client', 'src', 'cordova', 'apple', workspaceFilename),
'-scheme',
'Outline',
'-destination',
Expand Down
8 changes: 4 additions & 4 deletions src/electron/go_vpn_tunnel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
import {powerMonitor} from 'electron';
import {platform} from 'os';

import {pathToEmbeddedBinary} from '../infrastructure/electron/app_paths';
import {ShadowsocksSessionConfig} from '../www/app/tunnel';
import {TunnelStatus} from '../www/app/tunnel';
import {ErrorCode, fromErrorCode, UnexpectedPluginError} from '../www/model/errors';
import {pathToEmbeddedBinary} from '../../client/src/infrastructure/electron/app_paths';
import {ShadowsocksSessionConfig} from '../../client/src/www/app/tunnel';
import {TunnelStatus} from '../../client/src/www/app/tunnel';
import {ErrorCode, fromErrorCode, UnexpectedPluginError} from '../../client/src/www/model/errors';

import {ChildProcessHelper, ProcessTerminatedExitCodeError, ProcessTerminatedSignalError} from './process';
import {RoutingDaemon} from './routing_service';
Expand Down

0 comments on commit 617d571

Please sign in to comment.