Skip to content

Commit

Permalink
fix again action
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler committed Aug 3, 2024
1 parent b590045 commit a2c6723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import HtmlWebpackPlugin from "html-webpack-plugin";
import FileManagerPlugin from "filemanager-webpack-plugin";

const outputPath = resolve(__dirname, "app/src/main/assets/www");
if (!existsSync(outputPath)) mkdirSync(outputPath);
if (!existsSync(outputPath)) mkdirSync(outputPath, { recursive: true });

const APP_DIR = resolve(__dirname, "src");
const MONACO_DIR = resolve(__dirname, "node_modules/monaco-editor");
Expand Down

0 comments on commit a2c6723

Please sign in to comment.