Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Official
AlekSIS-Core
Commits
8f8860c6
Verified
Commit
8f8860c6
authored
5 years ago
by
mirabilos
Browse files
Options
Downloads
Patches
Plain Diff
Make the entire script use mksh in its shebang
Nik “rather one more dependency than these extra switches”
parent
02f728e2
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Checking pipeline status
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dev.sh
+29
-44
29 additions, 44 deletions
dev.sh
with
29 additions
and
44 deletions
dev.sh
+
29
−
44
View file @
8f8860c6
#!/
bin/
sh
#!/
usr/bin/env mk
sh
remove_pip_metadata
()
{
find
.
-type
d
-name
pip-wheel-metadata
-print0
| xargs
-0r
rm
-rf
--
...
...
@@ -55,51 +55,36 @@ case "$1" in
done
|
sort
-n
| gource
--log-format
custom
--background-image
aleksis/core/static/img/aleksis-logo.png -
exit
;;
"devstats"
*
)
case
$KSH_VERSION
in
(
*
MIRBSD
\
KSH
*
)
;;
(
*
)
echo
>
&2 E: need mksh
;
exit
1
;;
esac
;;
*
)
echo
>
&2
"E: unknown command '
$1
'"
exit
1
;;
esac
# this line is only reached if the shell is mksh
# and $1 is one of the known commands (devstats*)
# Copyright © 2018
# mirabilos <m@mirbsd.org>
# Copyright © 2017
# mirabilos <t.glaser@tarent.de>
# Copyright © 2015, 2017, 2020
# mirabilos <thorsten.glaser@teckids.org>
#
# Provided that these terms and disclaimer and all copyright notices
# are retained or reproduced in an accompanying document, permission
# is granted to deal in this work without restriction, including un‐
# limited rights to use, publicly perform, distribute, sell, modify,
# merge, give away, or sublicence.
#
# This work is provided “AS IS” and WITHOUT WARRANTY of any kind, to
# the utmost extent permitted by applicable law, neither express nor
# implied; without malicious intent or gross negligence. In no event
# may a licensor, author or contributor be held liable for indirect,
# direct, other damage, loss, or other issues arising in any way out
# of dealing in the work, even if advised of the possibility of such
# damage or existence of a defect, except proven that it results out
# of said person’s immediate fault when using the work as intended.
"devstats-commits"
)
# Copyright © 2018
# mirabilos <m@mirbsd.org>
# Copyright © 2017
# mirabilos <t.glaser@tarent.de>
# Copyright © 2015, 2017, 2020
# mirabilos <thorsten.glaser@teckids.org>
#
# Provided that these terms and disclaimer and all copyright notices
# are retained or reproduced in an accompanying document, permission
# is granted to deal in this work without restriction, including un‐
# limited rights to use, publicly perform, distribute, sell, modify,
# merge, give away, or sublicence.
#
# This work is provided “AS IS” and WITHOUT WARRANTY of any kind, to
# the utmost extent permitted by applicable law, neither express nor
# implied; without malicious intent or gross negligence. In no event
# may a licensor, author or contributor be held liable for indirect,
# direct, other damage, loss, or other issues arising in any way out
# of dealing in the work, even if advised of the possibility of such
# damage or existence of a defect, except proven that it results out
# of said person’s immediate fault when using the work as intended.
set
-e
set
-o
pipefail
unset
LANGUAGE
export
LC_ALL
=
C.UTF-8
set
-o
utf8-mode
set
-e
set
-o
pipefail
unset
LANGUAGE
export
LC_ALL
=
C.UTF-8
set
-o
utf8-mode
case
$1
in
(
devstats-commits
)
for
d
in
.
apps/official/
*
;
do
cd
"
$d
"
if
[[
!
-s
pyproject.toml
]]
;
then
...
...
@@ -184,7 +169,7 @@ case $1 in
done
exit
;;
(
*
)
*
)
print
-ru2
--
"E: unknown command
${
1
@Q
}
"
exit
1
;;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment