Skip to content

Commit

Permalink
Fix UV download script - ESM conversion error
Browse files Browse the repository at this point in the history
  • Loading branch information
webfiltered committed Dec 16, 2024
1 parent e413f83 commit 17deaa4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/downloadUV.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import path from "path"
import os from 'os'
import * as fs from 'fs-extra'
import fs from 'fs-extra'
import axios from 'axios'
import tar from 'tar'
import * as tar from 'tar'
import extractZip from 'extract-zip'
import packageJson from './getPackage.js'

Expand Down Expand Up @@ -82,4 +82,4 @@ async function downloadAndExtract(baseURL, options) {
}

//** Download and Extract UV. Default uses OS.Platfrom. Add 'all' will download all. Add 'none' will skip */
downloadUV();
await downloadUV();

0 comments on commit 17deaa4

Please sign in to comment.