git-svn-id: svn://ultimatepp.org/upp/trunk@14241 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2020-04-05 16:12:10 +00:00
parent b0844f5b03
commit 2da4023496
4 changed files with 9 additions and 2 deletions

View file

@ -25,7 +25,7 @@ void CopyFolder(const char *src, const char *dst, bool deep = true)
{
if(GetFileName(src) == ".svn")
return;
Cout() << Sprintf("Directory %s\n", src);
RLOG("Directory " << src);
RealizeDirectory(dst);
FindFile ff(String(src) + "/*.*");
while(ff) {
@ -68,6 +68,7 @@ extern const char *readme;
String SaveText(const char *name, const char *text)
{
RLOG("File " << name);
String t = release + "/" + name;
SaveFile(t, Filter(text, [](int c) { return c == '\r' ? 0 : c; }));
return t;

View file

@ -17,6 +17,7 @@ file
Makefile,
readme.md,
src,
posix,
upgrade.sh,
uppdeb,
upp.spec,

View file

@ -15,7 +15,7 @@ mkdir ~/upp.tmp || true
bash ~/Scripts/win
bash ~/Scripts/src
bash ~/Scripts/posix
# bash ~/Scripts/deb64

5
uppbox/Scripts/posix Normal file
View file

@ -0,0 +1,5 @@
#!/usr/bin/env bash
D=~/upp.src
~/bin/umk $D/uppbox,$D/uppsrc MakePosixInstall CLANG -rsvb ~/makeposix
~/makeposix