mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-09 13:15:37 +03:00
1f59d0ee2a
For Linux .rpm and .deb targets only.
16 lines
213 B
Bash
16 lines
213 B
Bash
#!/bin/sh
|
|
|
|
PULSAR_SCRIPT_PATH='/usr/bin/pulsar'
|
|
|
|
if [ -f "$PULSAR_SCRIPT_PATH" ]
|
|
then
|
|
rm "$PULSAR_SCRIPT_PATH"
|
|
fi
|
|
|
|
PPM_SYMLINK_PATH='/usr/bin/ppm'
|
|
|
|
if [ -L "$PPM_SYMLINK_PATH" ]
|
|
then
|
|
rm "$PPM_SYMLINK_PATH"
|
|
fi
|