Skip to content

Commit

Permalink
Update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
zachhuff386 committed Nov 8, 2023
1 parent 21fb81f commit b7038ea
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 22 deletions.
13 changes: 6 additions & 7 deletions client/dist-dev/static/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,7 @@ __webpack_require__.r(__webpack_exports__);
/* harmony export */ "args": () => (/* binding */ args),
/* harmony export */ "production": () => (/* binding */ production),
/* harmony export */ "authPath": () => (/* binding */ authPath),
/* harmony export */ "deviceAuthPath": () => (/* binding */ deviceAuthPath),
/* harmony export */ "frameless": () => (/* binding */ frameless),
/* harmony export */ "winDrive": () => (/* binding */ winDrive),
/* harmony export */ "dataPath": () => (/* binding */ dataPath),
Expand Down Expand Up @@ -423,6 +424,7 @@ const hostname = os__WEBPACK_IMPORTED_MODULE_6___default().hostname();
const args = new Map();
let production = true;
let authPath = '';
let deviceAuthPath = '';
let frameless = false;
let winDrive = 'C:\\';
let systemDrv = (process__WEBPACK_IMPORTED_MODULE_5___default().env.SYSTEMDRIVE);
Expand All @@ -444,15 +446,12 @@ for (let item of queryVals) {
}
if (args.get('dev') === 'true') {
production = false;
authPath = path__WEBPACK_IMPORTED_MODULE_4___default().join(__dirname, '..', '..', 'dev', 'auth');
}
if ((process__WEBPACK_IMPORTED_MODULE_5___default().platform) === 'win32') {
authPath = path__WEBPACK_IMPORTED_MODULE_4___default().join(winDrive, 'ProgramData', 'Pritunl', 'auth');
}
else {
if ((process__WEBPACK_IMPORTED_MODULE_5___default().platform) === 'win32') {
authPath = path__WEBPACK_IMPORTED_MODULE_4___default().join(winDrive, 'ProgramData', 'Pritunl', 'auth');
}
else {
authPath = path__WEBPACK_IMPORTED_MODULE_4___default().join((path__WEBPACK_IMPORTED_MODULE_4___default().sep), 'var', 'run', 'pritunl.auth');
}
authPath = path__WEBPACK_IMPORTED_MODULE_4___default().join((path__WEBPACK_IMPORTED_MODULE_4___default().sep), 'var', 'run', 'pritunl.auth');
}
if (args.get("frameless") === "true") {
frameless = true;
Expand Down
2 changes: 1 addition & 1 deletion client/dist-dev/static/app.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/dist-dev/static/main.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions client/dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
<div id="toaster"></div>
<div id="toaster2"></div>
<script>
window.source_map = "static/app.47492b.js.map"
window.source_map = "static/app.09a622.js.map"
</script>
<script src="static/app.47492b.js"></script>
<script src="static/app.09a622.js"></script>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -61002,6 +61002,7 @@ const hostname = external_os_default().hostname();
const args = new Map();
let production = true;
let authPath = '';
let deviceAuthPath = '';
let frameless = false;
let winDrive = 'C:\\';
let systemDrv = (external_process_default()).env.SYSTEMDRIVE;
Expand All @@ -61023,15 +61024,12 @@ for (let item of queryVals) {
}
if (args.get('dev') === 'true') {
production = false;
authPath = external_path_default().join(__dirname, '..', '..', 'dev', 'auth');
}
if ((external_process_default()).platform === 'win32') {
authPath = external_path_default().join(winDrive, 'ProgramData', 'Pritunl', 'auth');
}
else {
if ((external_process_default()).platform === 'win32') {
authPath = external_path_default().join(winDrive, 'ProgramData', 'Pritunl', 'auth');
}
else {
authPath = external_path_default().join((external_path_default()).sep, 'var', 'run', 'pritunl.auth');
}
authPath = external_path_default().join((external_path_default()).sep, 'var', 'run', 'pritunl.auth');
}
if (args.get("frameless") === "true") {
frameless = true;
Expand Down
1 change: 1 addition & 0 deletions client/dist/static/app.09a622.js.map

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion client/dist/static/app.47492b.js.map

This file was deleted.

8 changes: 7 additions & 1 deletion client/dist/static/main.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/dist/static/main.js.map

Large diffs are not rendered by default.

0 comments on commit b7038ea

Please sign in to comment.