Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
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
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
9b0870a6
Commit
9b0870a6
authored
Apr 09, 2005
by
myk%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for bug 273209: makes CVS ignore skins/.cvsignore; r=jouni; a=myk
parent
61898d18
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
23 deletions
+2
-23
checksetup.pl
checksetup.pl
+2
-23
No files found.
checksetup.pl
View file @
9b0870a6
...
@@ -960,30 +960,9 @@ if (!-d "skins/custom") {
...
@@ -960,30 +960,9 @@ if (!-d "skins/custom") {
mkdir
"skins/custom"
,
0700
;
mkdir
"skins/custom"
,
0700
;
}
}
# Whether or not the custom skin directory has been ignored (i.e. added to
if
(
!-
e
"skins/.cvsignore"
)
{
# skins/.cvsignore).
sub
customSkinsIgnored
{
if
(
!-
e
"skins/.cvsignore"
)
{
return
0
;
}
else
{
open
CVSIGNORE
,
'<'
,
"skins/.cvsignore"
;
while
(
<
CVSIGNORE
>
)
{
chomp
;
if
(
/^custom$/
)
{
close
CVSIGNORE
;
return
1
;
}
}
close
CVSIGNORE
;
return
0
;
}
}
# If the custom skin directory hasn't been ignored, ignore it (i.e. add it to
# skins/.cvsignore).
if
(
!
customSkinsIgnored
())
{
open
CVSIGNORE
,
'>>'
,
"skins/.cvsignore"
;
open
CVSIGNORE
,
'>>'
,
"skins/.cvsignore"
;
print
CVSIGNORE
".cvsignore\n"
;
print
CVSIGNORE
"custom\n"
;
print
CVSIGNORE
"custom\n"
;
close
CVSIGNORE
;
close
CVSIGNORE
;
}
}
...
...
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