Skip to content

Commit

Permalink
action: build the action
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Mar 10, 2024
1 parent 8e41dc5 commit 677e964
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dist/restore-only/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83741,7 +83741,7 @@ function restoreCache({ primaryKey, restoreKeys, lookupOnly }) {
return __awaiter(this, void 0, void 0, function* () {
let extraTarArgs = [];
if (!lookupOnly) {
const nixPaths = (0, fs_1.readdirSync)("/nix/store").map(x => `/nix/store/${x}`);
const nixPaths = (0, fs_1.readdirSync)("/nix/store").map(x => `../../../../../nix/store/${x}`);
const tmp = yield cacheUtils.createTempDirectory();
const excludeFromFile = `${tmp}/nix-store-paths`;
(0, fs_1.writeFileSync)(excludeFromFile, nixPaths.join("\n"));
Expand Down
2 changes: 1 addition & 1 deletion dist/restore/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83741,7 +83741,7 @@ function restoreCache({ primaryKey, restoreKeys, lookupOnly }) {
return __awaiter(this, void 0, void 0, function* () {
let extraTarArgs = [];
if (!lookupOnly) {
const nixPaths = (0, fs_1.readdirSync)("/nix/store").map(x => `/nix/store/${x}`);
const nixPaths = (0, fs_1.readdirSync)("/nix/store").map(x => `../../../../../nix/store/${x}`);
const tmp = yield cacheUtils.createTempDirectory();
const excludeFromFile = `${tmp}/nix-store-paths`;
(0, fs_1.writeFileSync)(excludeFromFile, nixPaths.join("\n"));
Expand Down
2 changes: 1 addition & 1 deletion dist/save-only/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83730,7 +83730,7 @@ function restoreCache({ primaryKey, restoreKeys, lookupOnly }) {
return __awaiter(this, void 0, void 0, function* () {
let extraTarArgs = [];
if (!lookupOnly) {
const nixPaths = (0, fs_1.readdirSync)("/nix/store").map(x => `/nix/store/${x}`);
const nixPaths = (0, fs_1.readdirSync)("/nix/store").map(x => `../../../../../nix/store/${x}`);
const tmp = yield cacheUtils.createTempDirectory();
const excludeFromFile = `${tmp}/nix-store-paths`;
(0, fs_1.writeFileSync)(excludeFromFile, nixPaths.join("\n"));
Expand Down
2 changes: 1 addition & 1 deletion dist/save/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83730,7 +83730,7 @@ function restoreCache({ primaryKey, restoreKeys, lookupOnly }) {
return __awaiter(this, void 0, void 0, function* () {
let extraTarArgs = [];
if (!lookupOnly) {
const nixPaths = (0, fs_1.readdirSync)("/nix/store").map(x => `/nix/store/${x}`);
const nixPaths = (0, fs_1.readdirSync)("/nix/store").map(x => `../../../../../nix/store/${x}`);
const tmp = yield cacheUtils.createTempDirectory();
const excludeFromFile = `${tmp}/nix-store-paths`;
(0, fs_1.writeFileSync)(excludeFromFile, nixPaths.join("\n"));
Expand Down

0 comments on commit 677e964

Please sign in to comment.