summaryrefslogtreecommitdiffstats
path: root/remote/modules/cron/module.build
diff options
context:
space:
mode:
authorSimon Rettberg2016-04-26 12:17:51 +0200
committerSimon Rettberg2016-04-26 12:17:51 +0200
commite37b34c6898faa8e2c54f398e34f1ce1eda4473c (patch)
tree56321fc8667cca0c7eb5d1448983a1fe07d29f4c /remote/modules/cron/module.build
parent[rfs-stage32] This module is just fucked up... (diff)
downloadtm-scripts-e37b34c6898faa8e2c54f398e34f1ce1eda4473c.tar.gz
tm-scripts-e37b34c6898faa8e2c54f398e34f1ce1eda4473c.tar.xz
tm-scripts-e37b34c6898faa8e2c54f398e34f1ce1eda4473c.zip
[cron] Fix revision checkout
Diffstat (limited to 'remote/modules/cron/module.build')
-rw-r--r--remote/modules/cron/module.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/remote/modules/cron/module.build b/remote/modules/cron/module.build
index d9f1e825..a4e640a2 100644
--- a/remote/modules/cron/module.build
+++ b/remote/modules/cron/module.build
@@ -4,7 +4,7 @@
fetch_source() {
[ -d "${MODULE_DIR}/src/.git" ] && return 0
rm -rf -- "${MODULE_DIR}/src"
- git clone --depth 1 "${REQUIRED_GIT}" "${MODULE_DIR}/src" || perror "Could not create ${MODULE_DIR}/src"
+ git clone "${REQUIRED_GIT}" "${MODULE_DIR}/src" || perror "Could not create ${MODULE_DIR}/src"
cd "${MODULE_DIR}/src"
git checkout "${REQUIRED_COMMIT}" || perror "Could not switch to required commit"
cd -