diff options
author | mms <git@sapka.me> | 2025-01-09 22:53:46 +0100 |
---|---|---|
committer | mms <git@sapka.me> | 2025-01-09 22:53:46 +0100 |
commit | 27a14097e6705f6665e8fe5a7a4ca078799f3647 (patch) | |
tree | e6e7063071d8b369b829cb2461e9aa1ef84204e4 /new/userfriendly/bin/deploy.rb | |
parent | edb8b8b15c2c7963daa453b0fa1753aad37ee1f4 (diff) |
Diffstat (limited to 'new/userfriendly/bin/deploy.rb')
-rwxr-xr-x | new/userfriendly/bin/deploy.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/new/userfriendly/bin/deploy.rb b/new/userfriendly/bin/deploy.rb new file mode 100755 index 00000000..46058108 --- /dev/null +++ b/new/userfriendly/bin/deploy.rb @@ -0,0 +1,10 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +require_relative '../lib/userfriendly' +require_relative '../../bin/deployer' + +source = "#{File.dirname(File.dirname(File.expand_path(__FILE__)))}/output/" +dest = 'site-crys-userfriendly' + +Crys::DeployerRunner.new(source: source, dest: dest).run |