From 3b70984a360462c5db45f831e883947a5750afb6 Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Tue, 18 Jun 2019 17:10:01 -0300 Subject: [PATCH] Fix: register_app.py --- aur/register_app.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/aur/register_app.py b/aur/register_app.py index bc1dce71..98516e09 100644 --- a/aur/register_app.py +++ b/aur/register_app.py @@ -1,6 +1,5 @@ # used for AUR installation import os -import subprocess import sys from pathlib import Path @@ -23,7 +22,3 @@ file_path = '{}/fpakman.desktop'.format(apps_path) with open(file_path, 'w+') as f: f.write(desktop_file) - -res = subprocess.run('desktop-file-install {}'.format(file_path), shell=True) - -exit(res.returncode)