mirror of
https://github.com/lopsided98/nix-ros-overlay.git
synced 2025-06-10 01:42:24 +03:00
actions: don't override cachix compression method
This was breaking cachix and it defaults to zstd anyway.
This commit is contained in:
parent
e41c59ae0d
commit
7b0c15e446
2 changed files with 2 additions and 2 deletions
|
@ -54,7 +54,7 @@ function query(name, drvPath) {
|
|||
exports.query = query;
|
||||
function push(name, paths) {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
yield execFile('cachix', ['--compression-method', 'zstd', 'push', name].concat(paths));
|
||||
yield execFile('cachix', ['push', name].concat(paths));
|
||||
});
|
||||
}
|
||||
exports.push = push;
|
||||
|
|
|
@ -12,5 +12,5 @@ export async function query(name: string, drvPath: string) {
|
|||
}
|
||||
|
||||
export async function push(name: string, paths: string[]) {
|
||||
await execFile('cachix', ['--compression-method', 'zstd', 'push', name].concat(paths))
|
||||
await execFile('cachix', ['push', name].concat(paths))
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue