Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
eb33305a
Commit
eb33305a
authored
May 18, 2020
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/shebang' into 'master'
Fix/shebang See merge request gitlab-org/gitlab!32371
parents
2e4a8457
ccf58807
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
10 additions
and
10 deletions
+10
-10
bin/background_jobs
bin/background_jobs
+1
-1
bin/background_jobs_sk
bin/background_jobs_sk
+1
-1
bin/background_jobs_sk_cluster
bin/background_jobs_sk_cluster
+1
-1
scripts/clean-old-cached-assets
scripts/clean-old-cached-assets
+1
-1
scripts/create_postgres_user.sh
scripts/create_postgres_user.sh
+1
-1
scripts/prepare_postgres_fdw.sh
scripts/prepare_postgres_fdw.sh
+1
-1
scripts/review_apps/gcp_cleanup.sh
scripts/review_apps/gcp_cleanup.sh
+1
-1
scripts/rspec_helpers.sh
scripts/rspec_helpers.sh
+1
-1
scripts/security-harness
scripts/security-harness
+1
-1
vendor/elastic_stack/wait-for-elasticsearch.sh
vendor/elastic_stack/wait-for-elasticsearch.sh
+1
-1
No files found.
bin/background_jobs
View file @
eb33305a
#!/
bin/
bash
#!/
usr/bin/env
bash
cd
$(
dirname
$0
)
/..
...
...
bin/background_jobs_sk
View file @
eb33305a
#!/
bin/
bash
#!/
usr/bin/env
bash
cd
$(
dirname
$0
)
/..
app_root
=
$(
pwd
)
...
...
bin/background_jobs_sk_cluster
View file @
eb33305a
#!/
bin/
bash
#!/
usr/bin/env
bash
cd
$(
dirname
$0
)
/..
app_root
=
$(
pwd
)
...
...
scripts/clean-old-cached-assets
View file @
eb33305a
#!/
bin/
bash
#!/
usr/bin/env
bash
# Clean up cached files that are older than 4 days
find tmp/cache/assets/sprockets/
-type
f
-mtime
+4
-execdir
rm
--
"{}"
\;
...
...
scripts/create_postgres_user.sh
View file @
eb33305a
#!/
bin/
bash
#!/
usr/bin/env
bash
psql
-h
postgres
-U
postgres postgres
<<
EOF
CREATE USER gitlab;
...
...
scripts/prepare_postgres_fdw.sh
View file @
eb33305a
#!/
bin/
bash
#!/
usr/bin/env
bash
psql
-h
postgres
-U
postgres gitlabhq_geo_test
<<
EOF
CREATE EXTENSION postgres_fdw;
...
...
scripts/review_apps/gcp_cleanup.sh
View file @
eb33305a
#!/
bin/
bash
#!/
usr/bin/env
bash
source
scripts/utils.sh
...
...
scripts/rspec_helpers.sh
View file @
eb33305a
#!/
bin/
bash
#!/
usr/bin/env
bash
function
retrieve_tests_metadata
()
{
mkdir
-p
knapsack/ rspec_flaky/ rspec_profiling/
...
...
scripts/security-harness
View file @
eb33305a
...
...
@@ -19,7 +19,7 @@ end
HOOK_PATH
=
File
.
expand_path
(
"../.git/hooks/pre-push"
,
__dir__
)
HOOK_DATA
=
<<~
HOOK
#!/
bin/
bash
#!/
usr/bin/env
bash
set -e
...
...
vendor/elastic_stack/wait-for-elasticsearch.sh
View file @
eb33305a
#!/
bin/
bash
#!/
usr/bin/env
bash
# http://redsymbol.net/articles/unofficial-bash-strict-mode/
IFS
=
$'
\n\t
'
set
-euo
pipefail
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment