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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-02-02 06:11:40 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-02-02 06:11:40 +0300
commit9a2f2c662033adfe4aaf12c4d407f452789c4e01 (patch)
treea9ea109617ffcd0002da1043437ae16dc61a928e /scripts
parent88ce9b624561a2a5836c623bdd07a81ffc611da7 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/db_tasks2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/db_tasks b/scripts/db_tasks
index c3b7bb84355..36040877abf 100755
--- a/scripts/db_tasks
+++ b/scripts/db_tasks
@@ -9,7 +9,7 @@ database_config = YAML.load_file(File.join(File.expand_path('..', __dir__), 'con
task = ARGV.shift
raise ArgumentError, 'You need to pass a task name!' unless task
-task = "${task}:main" unless database_config.one?
+task = "#{task}:main" unless database_config.one?
cmd = ['bundle', 'exec', 'rake', task, *ARGV]
puts "Running: `#{cmd.join(' ')}`"