From 6f0f75d7ad32228ba6b2d331238fb6d31b50fcd3 Mon Sep 17 00:00:00 2001 From: Philipp Horstenkamp Date: Mon, 21 Apr 2025 21:00:29 +0200 Subject: [PATCH] Fixed glob import (#21) Glob was not imported as a function Reviewed-on: https://git.horstenkamp.eu/Screeps/screeps-deploy-action/pulls/21 Co-authored-by: Philipp Horstenkamp Co-committed-by: Philipp Horstenkamp --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 0985e29..eba2489 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,7 @@ const { ScreepsAPI } = require("screeps-api"); const core = require("@actions/core"); const fs = require("fs"); -const glob = require("glob"); +const { glob } = require("glob"); const path = require("path"); /**