-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
And wrote some more unit tests (Mainly for User) modified: app/models/permission.rb modified: app/models/tag.rb -- added missing User foreign key modified: app/models/user.rb -- fixed validations to remove duplicates added by devise. related to #84 modified: db/seeds.rb -- added else clause for case modified: spec/models/user_spec.rb -- wrote all model tests for user modified: vendor/bin/install_console_audio_tools.sh -- fix ubuntu key error for package install
- Loading branch information
Showing
4 changed files
with
47 additions
and
22 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
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
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
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 |
---|---|---|
@@ -1,3 +1,15 @@ | ||
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 16126D3A3E5C1192 | ||
sudo apt-key del 16126D3A3E5C1192 | ||
sudo apt-get update | ||
sudo apt-key finger | ||
sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 16126D3A3E5C1192 | ||
sudo apt-get update | ||
sudo apt-get install ffmpeg mp3splt sox wavpack --fix-missing | ||
sudo apt-get update | ||
sudo apt-get update | ||
|
||
# http://askubuntu.com/a/86445 apt-get clean # Remove cached packages | ||
cd /var/lib/apt | ||
mv lists lists.old # Backup mirror info | ||
mkdir -p lists/partial # Recreate directory structure | ||
apt-get clean | ||
apt-get update # Fetch mirror info | ||
sudo apt-key finger |