diff options
Diffstat (limited to 'new/splash/bin/deploy.rb')
-rwxr-xr-x | new/splash/bin/deploy.rb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/new/splash/bin/deploy.rb b/new/splash/bin/deploy.rb new file mode 100755 index 00000000..b7639053 --- /dev/null +++ b/new/splash/bin/deploy.rb @@ -0,0 +1,10 @@ +#!/usr/bin/env ruby +# frozen_string_literal: true + +require_relative '../lib/splash' +require_relative '../../bin/deployer' + +source = "#{File.dirname(File.dirname(File.expand_path(__FILE__)))}/output/" +dest = 'site-crys-splash' + +Crys::DeployerRunner.new(source: source, dest: dest).run |