Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
open-build-service-debian
Manage
Activity
Members
Labels
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
obs
open-build-service-debian
Merge requests
!2
Fix FTBFS in Debian unstable
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Fix FTBFS in Debian unstable
kanashiro/open-build-service-debian:debian/master
into
debian/master
Overview
6
Commits
3
Pipelines
0
Changes
4
All threads resolved!
Hide all comments
Closed
Lucas Kanashiro
requested to merge
kanashiro/open-build-service-debian:debian/master
into
debian/master
6 years ago
Overview
6
Commits
3
Pipelines
0
Changes
4
All threads resolved!
Hide all comments
Expand
👍
0
👎
0
Merge request reports
Compare
debian/master
version 1
0deb9572
6 years ago
debian/master (base)
and
latest version
latest version
8ba654a7
3 commits,
6 years ago
version 1
0deb9572
3 commits,
6 years ago
4 files
+
197
−
73
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
debian/patches/ruby-interpreter.patch deleted
100644 → 0
+
0
−
70
Options
--- a/src/api/bin/bundle
+++ b/src/api/bin/bundle
@@ -1,3 +1,3 @@
-#!/usr/bin/env ruby2.3
+#!/usr/bin/ruby
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
load Gem.bin_path('bundler', 'bundle')
--- a/src/api/bin/rails
+++ b/src/api/bin/rails
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby2.3
+#!/usr/bin/ruby
APP_PATH = File.expand_path('../../config/application', __FILE__)
require_relative '../config/boot'
require 'rails/commands'
--- a/src/api/bin/rake
+++ b/src/api/bin/rake
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby2.3
+#!/usr/bin/ruby
require_relative '../config/boot'
require 'rake'
Rake.application.run
--- a/src/api/script/check_database
+++ b/src/api/script/check_database
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby2.3
+#!/usr/bin/ruby
require File.dirname(__FILE__) + '/../config/boot'
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'config', 'environment'))
--- a/src/api/script/delayed_job.api.rb
+++ b/src/api/script/delayed_job.api.rb
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby2.3
+#!/usr/bin/ruby
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'config', 'environment'))
require 'delayed/command'
--- a/src/api/script/import
+++ b/src/api/script/import
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby2.3
+#!/usr/bin/ruby
require File.dirname(__FILE__) + '/../config/boot'
# set this to true if you want to create users that appear in metafiles
--- a/src/api/script/plugin
+++ b/src/api/script/plugin
@@ -1,3 +1,3 @@
-#!/usr/bin/env ruby2.3
+#!/usr/bin/ruby
require File.dirname(__FILE__) + '/../config/boot'
require 'commands/plugin'
--- a/src/api/script/reformat_memprof
+++ b/src/api/script/reformat_memprof
@@ -1,4 +1,4 @@
-#! /usr/bin/ruby2.3
+#! /usr/bin/ruby
require 'rubygems'
require 'json'
--- a/src/api/script/start_test_backend
+++ b/src/api/script/start_test_backend
@@ -1,4 +1,4 @@
-#!/usr/bin/env ruby2.3
+#!/usr/bin/ruby
ENV['RAILS_ENV'] ||= 'test'
ENV['origin_RAILS_ENV'] ||= ENV['RAILS_ENV']
ENV['LC_ALL'] = 'C'
Loading