Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
asdf
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
16
Issues
16
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
asdf
asdf
Commits
7882d131
Commit
7882d131
authored
Nov 01, 2015
by
Francois-Rene Rideau
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into minimakefile
parents
84cebea0
4a7c25cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
doc/index.html
doc/index.html
+1
-1
tools/release.lisp
tools/release.lisp
+5
-5
No files found.
doc/index.html
View file @
7882d131
...
...
@@ -216,7 +216,7 @@ Allegro <bugs@franz.com>,
Clozure CL <openmcl-devel@clozure.com>,
GNU CLISP <clisp-list@lists.sourceforge.net> (sds),
CMU CL <cmucl-imp@cmucl.cons.org>,
ECL <ecl
s-list@lists.sourceforge
.net>,
ECL <ecl
-devel@common-lisp
.net>,
GCL <gcl-devel@gnu.org>,
LispWorks <lisp-support@lispworks.com>,
MKCL <jean.claude.beaudoin@gmail.com>,
...
...
tools/release.lisp
View file @
7882d131
...
...
@@ -60,11 +60,11 @@
destination
))
(
ensure-directories-exist
destination
)
(
run*
`
(
cp
"-pHux"
--parents
,@
files
,
destination
)
:directory
base
:show
t
)
(
run*
`
(
tar
"zcf
C"
,
tarball
,
*build-dir*
;; TODO: Have better autodetection for which tar is being used,
;; and fall back to no option if not recognized.
#+
linux
(
*
:owner
root
:group
root
)
;; assume GNU tar on Linux.
#+
darwin
(
*
:uid
0
:gid
0
)
;; assume BSD tar on Darwin.
(
run*
`
(
tar
"zcf
"
,
tarball
"-C"
,
*build-dir*
;; TODO: Have better autodetection for which tar is being used,
;; and fall back to no option if not recognized.
;;
#+linux (* :owner root :group root) ;; assume GNU tar on Linux.
;;
#+darwin (* :uid 0 :gid 0) ;; assume BSD tar on Darwin.
(
,
name
/
))
:show
t
)
(
delete-directory-tree
destination
:validate
#'
(
lambda
(
x
)
(
equal
x
destination
)))
(
success
)))
...
...
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