Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
Cabal
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
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
Glasgow Haskell Compiler
Packages
Cabal
Commits
a0f1ef26
Commit
a0f1ef26
authored
3 years ago
by
Emily Pillmore
Browse files
Options
Downloads
Patches
Plain Diff
undo reversion
parent
0d208665
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
cabal-install/src/Distribution/Client/Init.hs
+5
-6
5 additions, 6 deletions
cabal-install/src/Distribution/Client/Init.hs
cabal-install/src/Distribution/Client/Init/FileCreators.hs
+13
-6
13 additions, 6 deletions
cabal-install/src/Distribution/Client/Init/FileCreators.hs
with
18 additions
and
12 deletions
cabal-install/src/Distribution/Client/Init.hs
+
5
−
6
View file @
a0f1ef26
...
...
@@ -56,10 +56,9 @@ initCmd v packageDBs repoCtxt comp progdb initFlags = do
-- If `--simple` is not set, default to interactive. When the flag
-- is explicitly set to `--non-interactive`, then we choose non-interactive.
--
createProject
=
case
interactive
initFlags
of
NoFlag
->
Interactive
.
createProject
Flag
True
|
fromFlagOrDefault
False
(
simpleProject
initFlags
)
->
createProject
|
fromFlagOrDefault
False
(
simpleProject
initFlags
)
=
Simple
.
createProject
|
otherwise
->
Interactive
.
createProject
Flag
False
->
NonInteractive
.
createProject
comp
|
otherwise
=
case
interactive
initFlags
of
Flag
False
->
NonInteractive
.
createProject
comp
_
->
Interactive
.
createProject
This diff is collapsed.
Click to expand it.
cabal-install/src/Distribution/Client/Init/FileCreators.hs
+
13
−
6
View file @
a0f1ef26
...
...
@@ -26,6 +26,7 @@ module Distribution.Client.Init.FileCreators
import
Prelude
hiding
(
writeFile
)
import
Distribution.Client.Compat.Prelude
hiding
(
head
,
empty
,
writeFile
)
import
qualified
Data.Set
as
Set
(
member
)
import
Distribution.Client.Utils
(
getCurrentYear
)
import
Distribution.Client.Init.Defaults
import
Distribution.Client.Init.Licenses
...
...
@@ -56,6 +57,7 @@ writeProject (ProjectSettings opts pkgDesc libTarget exeTarget testTarget)
message
opts
$
"
\n
Using cabal specification: "
++
showCabalSpecVersion
(
_optCabalSpec
opts
)
++
"
\n
"
writeLicense
opts
pkgDesc
writeChangeLog
opts
pkgDesc
...
...
@@ -204,9 +206,9 @@ writeLicense writeOpts pkgDesc = do
--
writeChangeLog
::
WriteOpts
->
PkgDescription
->
IO
()
writeChangeLog
opts
pkgDesc
|
defaultChangelog
`
elem
`
_pkgExtra
Sr
cFiles
pkgDesc
=
do
message
opts
(
"Creating "
++
defaultChangelog
++
"..."
)
writeFileSafe
opts
defaultChangelog
changeLog
|
Just
docs
<-
_pkgExtra
Do
cFiles
pkgDesc
,
defaultChangelog
`
Set
.
member
`
docs
=
go
|
defaultChangelog
`
elem
`
_pkgExtraSrcFiles
pkgDesc
=
go
|
otherwise
=
return
()
where
changeLog
=
unlines
...
...
@@ -217,6 +219,10 @@ writeChangeLog opts pkgDesc
,
"* First version. Released on an unsuspecting world."
]
go
=
do
message
opts
(
"Creating "
++
defaultChangelog
++
"..."
)
writeFileSafe
opts
defaultChangelog
changeLog
-- -------------------------------------------------------------------- --
-- Utilities
...
...
@@ -265,9 +271,10 @@ writeDirectoriesSafe opts dirs = for_ dirs $ \dir -> do
exists
<-
doesDirectoryExist
dir
moveExistingDir
dir
exists
let
action
=
if
doOverwrite
then
"Overwriting"
else
"Creating or using already existing"
let
action
|
doOverwrite
=
"Overwriting"
|
exists
=
"Using pre-existing"
|
otherwise
=
"Creating"
message
opts
$
action
++
" directory ./"
++
dir
++
"..."
unless
exists
$
...
...
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