Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2020-05-18 15:08:08 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-05-18 15:08:08 +0300
commit48650fe1bfc1e3d20ec3a5702ef4d64e9fe69912 (patch)
tree0f73ad6e03989c301b79490ddb30125c233e4eff /scripts/clean-old-cached-assets
parent1b9a2ce27825c02cc14b594ed5ea061fccf1d957 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts/clean-old-cached-assets')
-rwxr-xr-xscripts/clean-old-cached-assets2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/clean-old-cached-assets b/scripts/clean-old-cached-assets
index 9a373439e5e..20889b7ffe6 100755
--- a/scripts/clean-old-cached-assets
+++ b/scripts/clean-old-cached-assets
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
# Clean up cached files that are older than 4 days
find tmp/cache/assets/sprockets/ -type f -mtime +4 -execdir rm -- "{}" \;