mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-23 18:29:19 -05:00
* build(docker): setup rootless image --------- Signed-off-by: Ludovic Ortega <ludovic.ortega@adminafk.fr>
10 lines
156 B
JavaScript
10 lines
156 B
JavaScript
#!/usr/bin/env node
|
|
|
|
/**
|
|
* Do not run husky in CI environments
|
|
*/
|
|
const isCi = process.env.CI !== undefined;
|
|
if (!isCi) {
|
|
require('husky').install();
|
|
}
|