Commit 64f6b14
Changed files (1)
bin
bin/add
@@ -1,13 +0,0 @@
-#!/usr/bin/env ruby
-# frozen_string_literal: true
-require 'uri'
-
-if ARGV.empty?
- puts "Please provide path to git repo."
- exit 1
-end
-
-uri = URI.parse(ARGV[0])
-destination = "pack/plugins/start/#{uri.path.split('/')[-1]}"
-
-exec "git submodule add #{uri.to_s} #{destination}"