Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ee94596d
Commit
ee94596d
authored
Oct 03, 2003
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Oct 03, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
This is actually a /bin/sh script, /bin/bash is not needed.
Check whether the two input files exists instead of assuming they do.
parent
d50fdcdc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
regSet.sh
programs/regapi/regSet.sh
+5
-2
No files found.
programs/regapi/regSet.sh
View file @
ee94596d
#!/bin/
ba
sh
#!/bin/sh
# This script is the receipe to generate the key that have to be created like
# if an applica
it
on was installed by its installer. It processes using a
# if an applica
ti
on was installed by its installer. It processes using a
# registry based on the picture of the registry before the application is
# installed and the picture of the registry after the application is installed.
#
...
...
@@ -31,6 +31,9 @@ if [ $# -ne 2 ]; then
exit
1
fi
if
[
!
-f
$1
]
;
then
echo
"
$1
does not exist."
;
exit
1
;
fi
if
[
!
-f
$2
]
;
then
echo
"
$2
does not exist."
;
exit
1
;
fi
echo
"Assuming that
$1
is the
\"
before
\"
file..."
echo
"Assuming that
$2
is the
\"
after
\"
file..."
...
...
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