Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Coopdevs OCB mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Coopdevs
Odoo
Coopdevs OCB mirror
Commits
c6ee92d4
Commit
c6ee92d4
authored
17 years ago
by
Cédric Krier
Browse files
Options
Downloads
Patches
Plain Diff
SERVER: fix win32 installer
bzr revid: ced-264f923444f1e75970420d037fa5dbf31d80b6d3
parent
1900b9a6
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
pixmaps/tinyerp-icon.png
+0
-0
0 additions, 0 deletions
pixmaps/tinyerp-icon.png
pixmaps/tinyerp.ico
+0
-0
0 additions, 0 deletions
pixmaps/tinyerp.ico
setup_py2exe.py
+9
-1
9 additions, 1 deletion
setup_py2exe.py
tinyerp-server-installer.nsi
+13
-0
13 additions, 0 deletions
tinyerp-server-installer.nsi
with
22 additions
and
1 deletion
doc
/tinyerp-icon.png
→
pixmaps
/tinyerp-icon.png
+
0
−
0
View file @
c6ee92d4
File moved
This diff is collapsed.
Click to expand it.
pixmaps/tinyerp.ico
deleted
100644 → 0
+
0
−
0
View file @
1900b9a6
4.19 KiB
This diff is collapsed.
Click to expand it.
setup_py2exe.py
+
9
−
1
View file @
c6ee92d4
...
...
@@ -16,11 +16,19 @@ options = {"py2exe": {"compressed": 0,
data_files
=
[]
os
.
chdir
(
'
bin
'
)
for
(
dp
,
dn
,
names
)
in
os
.
walk
(
'
addons
'
,
'
i18n
'
):
for
(
dp
,
dn
,
names
)
in
os
.
walk
(
'
addons
'
):
if
'
.svn
'
in
dn
:
dn
.
remove
(
'
.svn
'
)
data_files
.
append
((
dp
,
map
(
lambda
x
:
os
.
path
.
join
(
'
bin
'
,
dp
,
x
),
names
)))
for
(
dp
,
dn
,
names
)
in
os
.
walk
(
'
i18n
'
):
if
'
.svn
'
in
dn
:
dn
.
remove
(
'
.svn
'
)
data_files
.
append
((
dp
,
map
(
lambda
x
:
os
.
path
.
join
(
'
bin
'
,
dp
,
x
),
names
)))
os
.
chdir
(
'
..
'
)
for
(
dp
,
dn
,
names
)
in
os
.
walk
(
'
doc
'
):
if
'
.svn
'
in
dn
:
dn
.
remove
(
'
.svn
'
)
data_files
.
append
((
dp
,
map
(
lambda
x
:
os
.
path
.
join
(
dp
,
x
),
names
)))
setup
(
name
=
"
tinyerp-server
"
,
...
...
This diff is collapsed.
Click to expand it.
tinyerp-server-installer.nsi
+
13
−
0
View file @
c6ee92d4
...
...
@@ -145,13 +145,26 @@ Section "Uninstall"
Push "$INSTDIR\addons"
Push ""
Call un.RmFilesButOne
Push "$INSTDIR\i18n"
Push ""
Call un.RmFilesButOne
Delete "$INSTDIR\service\*"
Push "$INSTDIR\doc"
Push ""
Call un.RmFilesButOne
Delete "$INSTDIR\*"
Delete "$INSTDIR\Uninstall.exe"
Push "$INSTDIR\addons"
Push ""
Call un.RmDirsButOne
Push "$INSTDIR\i18n"
Push ""
Call un.RmDirsButOne
Push "$INSTDIR\doc"
Push ""
Call un.RmDirsButOne
RMDir "$INSTDIR\doc"
RMDir "$INSTDIR\addons"
RMDir "$INSTDIR\service"
RMDir "$INSTDIR"
...
...
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