Skip to content

Commit

Permalink
Clone repos using https: URLs rather than git: (sass#618)
Browse files Browse the repository at this point in the history
  • Loading branch information
Israel-4Ever committed Mar 25, 2022
1 parent fb39397 commit 3190ef4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ namespace :sass do
# Check out the latest commit of Dart Sass into the .dart-sass directory.
task :checkout do
unless Dir.exists?(".dart-sass")
sh %{git clone git://github.com/sass/dart-sass .dart-sass}
sh %{git clone https://github.com/sass/dart-sass .dart-sass}
end

Dir.chdir(".dart-sass") do
Expand All @@ -81,7 +81,7 @@ namespace :sass do
# Check out the latest commit of the Sass migrator into the .sass-migrator directory.
task :checkout do
unless Dir.exists?(".sass-migrator")
sh %{git clone git://github.com/sass/migrator .sass-migrator}
sh %{git clone https://github.com/sass/migrator .sass-migrator}
end

Dir.chdir(".sass-migrator") do
Expand All @@ -103,7 +103,7 @@ namespace :sass do
# Check out the latest commit of LibSass into the .libsass directory.
task :checkout do
unless Dir.exists?(".libsass")
sh %{git clone git://github.com/sass/libsass .libsass}
sh %{git clone https://github.com/sass/libsass .libsass}
end

Dir.chdir(".libsass") do
Expand All @@ -126,7 +126,7 @@ namespace :sass do
# directory.
task :checkout do
unless Dir.exists?(".language")
sh %{git clone git://github.com/sass/sass .language}
sh %{git clone https://github.com/sass/sass .language}
end

Dir.chdir(".language") do
Expand Down

0 comments on commit 3190ef4

Please sign in to comment.