diff options
author | lassulus <lassulus@lassul.us> | 2022-05-28 16:34:01 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2022-05-28 16:34:01 +0200 |
commit | c79ecd830f86d2075cfbdb5cd2221b5536e07881 (patch) | |
tree | 6065ead3151849b2e1f60114b885ac5818ff0294 /krebs/5pkgs | |
parent | ea3c3d52f7ddd7d770f28315b444efb0fc931ec5 (diff) |
realwallpaper: don't fail on fetch error
Diffstat (limited to 'krebs/5pkgs')
-rw-r--r-- | krebs/5pkgs/simple/realwallpaper/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/krebs/5pkgs/simple/realwallpaper/default.nix b/krebs/5pkgs/simple/realwallpaper/default.nix index 2fbc7ff86..832e47f26 100644 --- a/krebs/5pkgs/simple/realwallpaper/default.nix +++ b/krebs/5pkgs/simple/realwallpaper/default.nix @@ -122,7 +122,7 @@ pkgs.writers.writeDashBin "generate-wallpaper" '' 'https://neo.sci.gsfc.nasa.gov/view.php?datasetId=MOD14A1_E_FIRE') & # regular fetches - fetch marker.json.tmp "$marker_url" + fetch marker.json.tmp "$marker_url" || : if [ -s marker.json.tmp ]; then mv marker.json.tmp marker.json fi |