Browse Source

Fix php-phalcon-micro setup file

Patrick Falls 12 years ago
parent
commit
0e4f3977e2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      php-phalcon-micro/setup.py

+ 1 - 1
php-phalcon-micro/setup.py

@@ -19,7 +19,7 @@ def start(args):
 def stop():
   try:
     subprocess.call("sudo /usr/local/nginx/sbin/nginx -s stop", shell=True)
-    subprocess.call("sudo kill -QUIT $( cat php-phalcon/deploy/php-fpm.pid )", shell=True)
+    subprocess.call("sudo kill -QUIT $( cat php-phalcon-micro/deploy/php-fpm.pid )", shell=True)
     subprocess.check_call("sudo chown -R $USER:$USER php-phalcon-micro", shell=True)
     return 0
   except subprocess.CalledProcessError: