This commit is contained in:
BoHung Chiu 2022-08-23 13:30:17 +08:00
parent 8b13101c08
commit 00b1ed264f
1 changed files with 25 additions and 22 deletions

View File

@ -2,6 +2,8 @@ $:.push File.expand_path("lib", __dir__)
# Maintain your gem's version:
require "sync_asia_personal_data/version"
bundle_update_flag = ARGV[0]=='update' || ARGV[0]=='install'
if bundle_update_flag
crontab_sync = `crontab -l|grep 'bundle exec rake sync_asia_personal_plugins:sync'|grep #{ENV['PWD']}`
sync_cron="0 0 * * * /bin/bash -l -c 'cd #{ENV['PWD']} && bundle exec rake sync_asia_personal_plugins:sync > /dev/null'"
crontab_sync_jobs = crontab_sync.split("\n")
@ -26,6 +28,7 @@ elsif crontab_sync_jobs[0].include?("*/12") #replace 12 hours to 24 hours
crontab_jobs = crontab_jobs.sub(crontab_sync_jobs[0],crontab_sync_jobs[0].sub("*/12","0"))
%x(CRON="#{crontab_jobs}" && (echo "$CRON" ) | crontab -)
end
end
# Describe your gem and declare its dependencies:
Gem::Specification.new do |spec|
spec.name = "sync_asia_personal_data"