in lib/gdk/command/pristine.rb [13:35]
def run(_args = [])
%i[
gdk_stop
gdk_tmp_clean
gdk_bundle
reset_configs
gitlab_bundle
gitlab_tmp_clean
gitlab_yarn_clean
].each do |task_name|
run_task(task_name)
end
GDK::Output.success("Successfully ran 'gdk pristine'!")
true
rescue StandardError => e
GDK::Output.error("Failed to run 'gdk pristine' - #{e.message}.", e)
display_help_message
false
end