Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axil@gitlab.com>2021-05-31 09:42:37 +0300
committerMarcel Amirault <4155490-marcel.amirault@users.noreply.gitlab.com>2021-05-31 09:42:37 +0300
commit93512617b70788c810ca98531f65b095ff062121 (patch)
tree1fc6dc75bdfbcb8314e5d92616e73ec517fdc21a /commands
parent390b7ec18d80d10e04db10465a812614f03711ea (diff)
Switch master branch occurrences to default branch (main)
Diffstat (limited to 'commands')
-rw-r--r--commands/frontend.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/frontend.rb b/commands/frontend.rb
index ed4a5346..fd691f97 100644
--- a/commands/frontend.rb
+++ b/commands/frontend.rb
@@ -13,7 +13,7 @@ run do |opts, args, cmd|
unless system('yarn install --frozen-lockfile')
abort <<~ERROR
Error: failed to run yarn. JavaScript compilation failed. For more information, see:
- https://gitlab.com/gitlab-org/gitlab-docs/blob/master/README.md
+ https://gitlab.com/gitlab-org/gitlab-docs/blob/main/README.md
ERROR
end
@@ -21,7 +21,7 @@ run do |opts, args, cmd|
unless system('yarn bundle')
abort <<~ERROR
Error: failed to run yarn. JavaScript compilation failed. For more information, see:
- https://gitlab.com/gitlab-org/gitlab-docs/blob/master/README.md
+ https://gitlab.com/gitlab-org/gitlab-docs/blob/main/README.md
ERROR
end