-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rename and cleaned up maintainer's script
- Loading branch information
1 parent
f2a862f
commit 4c409b8
Showing
3 changed files
with
40 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
.gitignore | ||
.gitattributes | ||
Makefile | ||
cp_to_elpa.sh | ||
cp2elpa.sh | ||
images | ||
commom_php | ||
phptest | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#!/bin/bash | ||
|
||
# This allows the configuration of the package path as follows: | ||
# - .cp2elpa.sh | ||
# - PACKAGE_USER_DIR=~/.emacs.d/.local/packages/ .cp2elpa.sh | ||
: ${PACKAGE_USER_DIR:=~/.emacs.d/elpa} | ||
|
||
cd `dirname $0` | ||
|
||
rm -rf ${PACKAGE_USER_DIR}/ac-php-20*/*.elc | ||
rm -rf ${PACKAGE_USER_DIR}/ac-php-core-20*/*.elc | ||
rm -rf ${PACKAGE_USER_DIR}/company-php-20*/*.elc | ||
|
||
cp -rf \ | ||
ac-php-core.el \ | ||
phpctags \ | ||
ac-php-comm-tags-data.* \ | ||
helm-ac-php-apropros.el \ | ||
${PACKAGE_USER_DIR}/ac-php-core-20*/ | ||
|
||
cp -rf ac-php.el ${PACKAGE_USER_DIR}/ac-php-20*/ | ||
cp -rf company-php.el ${PACKAGE_USER_DIR}/company-php-20*/ | ||
|
||
chmod a-w ${PACKAGE_USER_DIR}/ac-php-core-20*/*.el | ||
|
||
rm -rf ${PACKAGE_USER_DIR}/develop/ac-php-20*/*.elc | ||
rm -rf ${PACKAGE_USER_DIR}/develop/ac-php-core-20*/*.elc | ||
rm -rf ${PACKAGE_USER_DIR}/develop/company-php-20*/*.elc | ||
|
||
cp -rf \ | ||
ac-php-core.el \ | ||
phpctags \ | ||
ac-php-comm-tags-data.* \ | ||
helm-ac-php-apropros.el \ | ||
${PACKAGE_USER_DIR}/develop/ac-php-core-20*/ | ||
|
||
cp -rf company-php.el ${PACKAGE_USER_DIR}/develop/company-php-20*/ | ||
|
||
chmod a-w ${PACKAGE_USER_DIR}/develop/ac-php-core-20*/*.el |
This file was deleted.
Oops, something went wrong.