Skip to content

Commit 161b915

Browse files
committed
Fix message, create deploy files with version again, fix PacletInfo
1 parent 1fcce66 commit 161b915

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

Rubi/PacletInfo.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Version -> "4.16.0.4",
99
MathematicaVersion -> "9+",
1010
Description -> "Package for Rule-based Integration",
11-
Creator -> "Albert D. Rich",
11+
Creator -> "Albert D. Rich, Patrick Scheibe",
1212
Thumbnail -> "logo.png",
1313
URL -> "https://rulebasedintegration.org",
1414
Extensions ->

Rubi/Rubi.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
"Rubi ",
6060
Version /. List@@Get[FileNameJoin[{$rubiDir, "PacletInfo.m"}]]
6161
];
62-
PrintTemporary["Initializing " <> $RubiVersion <> ". This needs to be done only once per configuration."];
62+
PrintTemporary["Loading " <> $RubiVersion <> " will take a minute or two. In the future this will take less than a second."];
6363

6464
If[Not@ValueQ[Global`$LoadShowSteps],
6565
$LoadShowSteps = True,

Rubi/RubiPackageTools.m

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,7 @@
6060
DeployRubi[] := Module[{file, paclet},
6161
deleteMXFiles[];
6262
paclet = PackPaclet[$dir];
63-
file = FileNameJoin[{DirectoryName[paclet], "Rubi.paclet"}];
64-
If[FileExistsQ[file],
65-
DeleteFile[file]
66-
];
67-
RenameFile[paclet, file];
68-
file = StringReplace[file, ".paclet" -> ".zip"];
63+
file = StringReplace[paclet, ".paclet" -> ".zip"];
6964
If[FileExistsQ[file],
7065
DeleteFile[file]
7166
];

0 commit comments

Comments
 (0)