ritwik12 / Virtual-Assistant

A linux based Virtual assistant on Artificial Intelligence in C
GNU General Public License v3.0
128 stars 95 forks source link

Fixing path to media #88

Closed RoyMattar closed 4 years ago

RoyMattar commented 4 years ago

Changed media command using absolute path: ls /home/username/Virtual-Assistant/media/ to using relative path: ls media

Using an absolute path to 'media' directory will likely lead to errors in case the user doesn't customize the "HOME_DIR" in the configuration file 'config' (editing 'username' to actual username). Also, absolute path is unnecessary and a relative path may be used instead.

ritwik12 commented 4 years ago

@RoyMattar Thanks for the PR, looks good. Let me try to fix Travis