From 5d42cf944c5e63b30935e9adfdeb4646f15d407c Mon Sep 17 00:00:00 2001 From: Albin Skott Date: Thu, 17 Mar 2022 10:44:24 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Add=20missing=20`os`=20import?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This fixes #206 --- lib/appdmg.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/appdmg.js b/lib/appdmg.js index d574ccc..98ab44e 100644 --- a/lib/appdmg.js +++ b/lib/appdmg.js @@ -1,6 +1,7 @@ 'use strict' const fs = require('fs') +const os = require('os') const path = require('path') const async = require('async')