Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
SquirrelJME
Commits
66937dd4
Commit
66937dd4
authored
Jan 01, 2020
by
Stephanie Gawroriski
Browse files
Remove notes to unversion script, it is not needed and is old.
parent
4179e7b2
Changes
1
Hide whitespace changes
Inline
Side-by-side
utils-dev/notes2unversion.sh
deleted
100755 → 0
View file @
4179e7b2
#!/bin/sh
# ---------------------------------------------------------------------------
# Multi-Phasic Applications: SquirrelJME
# Copyright (C) Stephanie Gawroriski <xer@multiphasicapps.net>
# Copyright (C) Multi-Phasic Applications <multiphasicapps.net>
# ---------------------------------------------------------------------------
# SquirrelJME is under the GNU General Public License v3, or later.
# See license.mkd for licensing and copyright information.
# ---------------------------------------------------------------------------
# DESCRIPTION: This moves all of the developer notes from the repository to
# the unversioned space in fossil.
# Force C locale
export
LC_ALL
=
C
# Directory of this script
__exedir
=
"
$(
dirname
--
"
$0
"
)
"
# Copy all notes to unversioned areas
(
cd
"
$__exedir
/../src/developer-notes"
;
find
-type
f |
sed
's/^\.\///g'
|
\
grep
'\.mkd'
|
grep
'\/'
)
|
while
read
__line
do
fossil unversion add
"
$__exedir
/../src/developer-notes/
$__line
"
\
--as
"developer-notes/
$__line
"
done
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