Clean import orders

pull/212/head
Ethan Dennis 5 years ago
parent 072d513f28
commit 3e55aff829
No known key found for this signature in database
GPG Key ID: 32E74B75DB4065DD

@ -1,8 +1,8 @@
import { exec } from "@actions/exec";
import * as io from "@actions/io"; import * as io from "@actions/io";
import { existsSync, writeFileSync } from "fs";
import * as path from "path"; import * as path from "path";
import { CacheFilename } from "./constants"; import { CacheFilename } from "./constants";
import { exec } from "@actions/exec";
import { existsSync, writeFileSync } from "fs";
async function getTarPath(): Promise<string> { async function getTarPath(): Promise<string> {
// Explicitly use BSD Tar on Windows // Explicitly use BSD Tar on Windows
@ -20,8 +20,6 @@ async function execTar(args: string[], cwd?: string): Promise<void> {
try { try {
await exec(`"${await getTarPath()}"`, args, { cwd: cwd }); await exec(`"${await getTarPath()}"`, args, { cwd: cwd });
} catch (error) { } catch (error) {
console.log("error", error);
const IS_WINDOWS = process.platform === "win32"; const IS_WINDOWS = process.platform === "win32";
if (IS_WINDOWS) { if (IS_WINDOWS) {
throw new Error( throw new Error(

Loading…
Cancel
Save